diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2005-02-14 06:57:27 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2005-02-14 06:57:27 +0000 |
commit | baa832d311cf36785bbe300412b946781d15d5c2 (patch) | |
tree | 9633c3e0c256f7955f4f845302ca265544550706 /src/mesa/drivers/dri/dri_client/imports | |
parent | 1718e34352395196749813ac4fa6b8142154bd7e (diff) |
Change another usage of __AMD64__ to the standard __amd64__, and remove
__AMD64__ from the linux configs so it won't creep back in as easily. Fixes
hang on FreeBSD on the first lock grab.
Diffstat (limited to 'src/mesa/drivers/dri/dri_client/imports')
-rw-r--r-- | src/mesa/drivers/dri/dri_client/imports/xf86drm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/dri_client/imports/xf86drm.h b/src/mesa/drivers/dri/dri_client/imports/xf86drm.h index 0b6e93fd3e..d3d78eb84e 100644 --- a/src/mesa/drivers/dri/dri_client/imports/xf86drm.h +++ b/src/mesa/drivers/dri/dri_client/imports/xf86drm.h @@ -285,7 +285,7 @@ typedef struct _drmSetVersion { #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 { \ |