diff options
author | anholt <anholt@FreeBSD.org> | 2005-02-14 15:08:27 +0800 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2005-02-14 15:08:27 +0800 |
commit | 4c1389252a0c4825dca1708f9dbfb91d03d389af (patch) | |
tree | a3e95db81200d902bbc83c93f971b2b248fea5bc /graphics | |
parent | 25e757a72601e2c6d7ece317146c952780dbd4b1 (diff) | |
download | freebsd-ports-gnome-4c1389252a0c4825dca1708f9dbfb91d03d389af.tar.gz freebsd-ports-gnome-4c1389252a0c4825dca1708f9dbfb91d03d389af.tar.zst freebsd-ports-gnome-4c1389252a0c4825dca1708f9dbfb91d03d389af.zip |
Update to a newer snapshot of stable Mesa. Includes a fix for hangs with
RV200 Radeons (thanks Dave Airlie!) [1], fixes for software fallbacks, the usual
pile of little conformance and other bugfixes, and fixing the hang on first lock
grab on AMD64 (that was a really lame bug). Host the distfile on freefall as
well until public_distfiles propagates.
PR: [1] ports/75731
Submitted by: [1] pb
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/dri/Makefile | 8 | ||||
-rw-r--r-- | graphics/dri/distinfo | 4 | ||||
-rw-r--r-- | graphics/dri/files/patch-xf86drm.h | 11 |
3 files changed, 17 insertions, 6 deletions
diff --git a/graphics/dri/Makefile b/graphics/dri/Makefile index 62ca4c55414a..52eda6467f3e 100644 --- a/graphics/dri/Makefile +++ b/graphics/dri/Makefile @@ -6,13 +6,13 @@ # PORTNAME= dri -PORTVERSION= 6.2 -PORTREVISION= 2 +PORTVERSION= 6.2.1 PORTEPOCH= 2 CATEGORIES= graphics -MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITES= ${MASTER_SITE_LOCAL} \ + http://people.freebsd.org/~anholt/dri/ MASTER_SITE_SUBDIR= anholt -DISTFILES= Mesa-6.2-20050109.tar.bz2 \ +DISTFILES= Mesa-6.2.1-20050213.tar.bz2 \ drm-20050109.tar.bz2 MAINTAINER= anholt@FreeBSD.org diff --git a/graphics/dri/distinfo b/graphics/dri/distinfo index 6c3b1830a413..28343c8a1c9c 100644 --- a/graphics/dri/distinfo +++ b/graphics/dri/distinfo @@ -1,4 +1,4 @@ -MD5 (Mesa-6.2-20050109.tar.bz2) = 70e8d5d08c9b96629cdc21f674d50ba5 -SIZE (Mesa-6.2-20050109.tar.bz2) = 4128962 +MD5 (Mesa-6.2.1-20050213.tar.bz2) = c6904904735489f728d79897c55260cb +SIZE (Mesa-6.2.1-20050213.tar.bz2) = 4131581 MD5 (drm-20050109.tar.bz2) = c16b1f51a589eb6cad8dc85c4db0e1ce SIZE (drm-20050109.tar.bz2) = 507130 diff --git a/graphics/dri/files/patch-xf86drm.h b/graphics/dri/files/patch-xf86drm.h new file mode 100644 index 000000000000..89993ddaaa45 --- /dev/null +++ b/graphics/dri/files/patch-xf86drm.h @@ -0,0 +1,11 @@ +--- src/mesa/drivers/dri/dri_client/imports/xf86drm.h.orig Sun Feb 13 22:44:48 2005 ++++ src/mesa/drivers/dri/dri_client/imports/xf86drm.h Sun Feb 13 22:44:55 2005 +@@ -285,7 +285,7 @@ + #define DRM_LOCK_CONT 0x40000000 /**< Hardware lock is contended */ + + #if defined(__GNUC__) && (__GNUC__ >= 2) +-# if defined(__i386) || defined(__AMD64__) ++# if defined(__i386) || defined(__amd64__) + /* Reflect changes here to drmP.h */ + #define DRM_CAS(lock,old,new,__ret) \ + do { \ |