diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-07-28 19:01:30 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-07-28 19:01:30 +0000 |
commit | d4beb49188599f7a8f5d57f7735145200aba8275 (patch) | |
tree | 54c1cd17235be131f1694efd7d008a3571d75456 /lib/pixman/configure | |
parent | cff7844e80fde47b807c53ecad7586c1872821f2 (diff) |
OpenBSD's gcc 3.3 is capable of handling the MMX code of pixman.
Change the configure test so that it gets enabled.
Tested by marco@ ajacoutot@ ckuethe@ and others.
Diffstat (limited to 'lib/pixman/configure')
-rw-r--r-- | lib/pixman/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pixman/configure b/lib/pixman/configure index 6ab477b48..9a0567cee 100644 --- a/lib/pixman/configure +++ b/lib/pixman/configure @@ -20784,8 +20784,8 @@ xserver_save_CFLAGS=$CFLAGS CFLAGS="$MMX_CFLAGS $CFLAGS" cat >conftest.$ac_ext <<_ACEOF -#if defined(__GNUC__) && (__GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ < 4)) -error "Need GCC >= 3.4 for MMX intrinsics" +#if defined(__GNUC__) && (__GNUC__ < 3 || (__GNUC__ == 3 && __GNUC_MINOR__ < 3)) +error "Need GCC >= 3.3 for MMX intrinsics" #endif #include <mmintrin.h> int main () { |