configure.ac: Properly detect the two architectures on which the real plugin can...
authorEdward Hervey <bilboed@bilboed.com>
Sat, 6 Jan 2007 19:23:40 +0000 (19:23 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Sat, 6 Jan 2007 19:23:40 +0000 (19:23 +0000)
Original commit message from CVS:
* configure.ac:
Properly detect the two architectures on which the real plugin can be
built.
Fixes #393622

ChangeLog
configure.ac

index ce2f373..08c1500 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-01-06  Edward Hervey  <edward@fluendo.com>
+
+       * configure.ac:
+       Properly detect the two architectures on which the real plugin can be
+       built.
+       Fixes #393622
+
 2007-01-06  Andy Wingo  <wingo@pobox.com>
 
        * ext/ladspa/gstsignalprocessor.c
index e0c7140..a5b42b8 100644 (file)
@@ -227,8 +227,8 @@ if test "x$HAVE_CXX" != "xyes"; then
 fi
 
 dnl real plugin only works on i386 and x86_64 for the time being.
-if test "x$HAVE_CPU_I386" != "xyes" || test "xHAVE_CPU_X86_64" != "xyes"; then
-  AC_MSG_WARN([Not building real plugin, only works on 32bit x86 platforms])
+if test "x$HAVE_CPU_I386" != "xyes" && test "x$HAVE_CPU_X86_64" != "xyes"; then
+  AC_MSG_WARN([Not building real plugin, only works on 32bit and 64bit x86 platforms])
   GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | sed 's/real//g'`
 fi