Blame SOURCES/bind97-rh478718.patch

900526
diff -up bind-9.7.0/configure.in.rh478718 bind-9.7.0/configure.in
900526
--- bind-9.7.0/configure.in.rh478718	2010-03-01 14:50:02.331207076 +0100
900526
+++ bind-9.7.0/configure.in	2010-03-01 14:50:21.501207488 +0100
900526
@@ -2540,6 +2540,10 @@ main() {
900526
 	AC_MSG_RESULT($arch)
900526
 fi
900526
 
900526
+if test ! "$arch" = "x86_64" -a "$have_xaddq" = "yes"; then
900526
+	AC_MSG_ERROR([XADDQ present but disabled by Fedora patch!])
900526
+fi
900526
+
900526
 if test "$have_atomic" = "yes"; then
900526
 	AC_MSG_CHECKING([compiler support for inline assembly code])
900526
 
900526
diff -up bind-9.7.0/lib/isc/include/isc/platform.h.in.rh478718 bind-9.7.0/lib/isc/include/isc/platform.h.in
900526
--- bind-9.7.0/lib/isc/include/isc/platform.h.in.rh478718	2010-03-01 14:50:31.421207522 +0100
900526
+++ bind-9.7.0/lib/isc/include/isc/platform.h.in	2010-03-01 14:50:40.313707286 +0100
900526
@@ -255,7 +255,11 @@
900526
  * If the "xaddq" operation (64bit xadd) is available on this architecture,
900526
  * ISC_PLATFORM_HAVEXADDQ will be defined.
900526
  */
900526
-@ISC_PLATFORM_HAVEXADDQ@
900526
+#ifdef __x86_64__
900526
+#define ISC_PLATFORM_HAVEXADDQ 1
900526
+#else
900526
+#undef ISC_PLATFORM_HAVEXADDQ
900526
+#endif
900526
 
900526
 /*
900526
  * If the "atomic swap" operation is available on this architecture,