diff mbox

[2/2] libdrm_radeon: Optimize cs_gem_reloc to do less looping.

Message ID 1268322043.7444.680.camel@thor.local (mailing list archive)
State New, archived
Headers show

Commit Message

Michel Dänzer March 11, 2010, 3:40 p.m. UTC
None
diff mbox

Patch

diff --git a/configure.ac b/configure.ac
index fe00176..e419dd7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -173,7 +173,7 @@  if test "x$HAVE_LIBUDEV" = xyes; then
 fi
 AM_CONDITIONAL(HAVE_LIBUDEV, [test "x$HAVE_LIBUDEV" = xyes])
 
-if test "x$INTEL" != "xno"; then
+if test "x$INTEL" != "xno" || test "x$RADEON" != "xno"; then
     # Check for atomic intrinsics
     AC_CACHE_CHECK([for native atomic primitives], drm_cv_atomic_primitives,
     [
@@ -206,13 +206,23 @@  if test "x$INTEL" != "xno"; then
     fi
 
     if test "x$drm_cv_atomic_primitives" = "xnone"; then
-	    if test "x$INTEL" != "xauto"; then
+	    if test "x$INTEL" = "xyes"; then
 		    AC_MSG_ERROR([libdrm_intel depends upon atomic operations, which were not found for your compiler/cpu. Try compiling with -march=native, or install the libatomics-op-dev package, or, failing both of those, disable support for Intel GPUs by passing --disable-intel to ./configure])
 	   else
 		    INTEL=no
 	   fi
+	    if test "x$RADEON" = "xyes"; then
+		    AC_MSG_ERROR([libdrm_radeon depends upon atomic operations, which were not found for your compiler/cpu. Try compiling with -march=native, or install the libatomics-op-dev package, or, failing both of those, disable support for Radeon GPUs by passing --disable-radeon to ./configure])
+	   else
+		    RADEON=no
+	   fi
     else
-	   INTEL=yes
+	    if test "x$INTEL" != "xno"; then
+		INTEL=yes
+	    fi
+	    if test "x$RADEON" != "xno"; then
+		RADEON=yes
+	    fi
     fi
 fi