m4/gst-arch.m4: add PPC64 so we can have separate structure sizes for it
authorThomas Vander Stichele <thomas@apestaart.org>
Tue, 6 Jun 2006 14:05:42 +0000 (14:05 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Tue, 6 Jun 2006 14:05:42 +0000 (14:05 +0000)
Original commit message from CVS:

* m4/gst-arch.m4:
add PPC64 so we can have separate structure sizes for it

ChangeLog
m4/gst-arch.m4

index 04edd09..47d1f0d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * m4/gst-arch.m4:
+         add PPC64 so we can have separate structure sizes for it
+
 2006-06-05  Edward Hervey  <edward@fluendo.com>
 
        * gtk-doc.mak:
index 5f58395..6e235ac 100644 (file)
@@ -20,9 +20,12 @@ AC_DEFUN([GST_ARCH],
         *)
           AC_DEFINE(HAVE_RDTSC, 1, [Define if RDTSC is available]) ;;
       esac ;;
-    xpowerpc*)
+    xpowerpc)
       HAVE_CPU_PPC=yes
       AC_DEFINE(HAVE_CPU_PPC, 1, [Define if the host CPU is a PowerPC]) ;;
+    xpowerpc64)
+      HAVE_CPU_PPC64=yes
+      AC_DEFINE(HAVE_CPU_PPC64, 1, [Define if the host CPU is a 64 bit PowerPC]) ;;
     xalpha*)
       HAVE_CPU_ALPHA=yes
       AC_DEFINE(HAVE_CPU_ALPHA, 1, [Define if the host CPU is an Alpha]) ;;
@@ -63,6 +66,7 @@ AC_DEFUN([GST_ARCH],
   
   AM_CONDITIONAL(HAVE_CPU_I386,       test "x$HAVE_CPU_I386" = "xyes")
   AM_CONDITIONAL(HAVE_CPU_PPC,        test "x$HAVE_CPU_PPC" = "xyes")
+  AM_CONDITIONAL(HAVE_CPU_PPC64,      test "x$HAVE_CPU_PPC64" = "xyes")
   AM_CONDITIONAL(HAVE_CPU_ALPHA,      test "x$HAVE_CPU_ALPHA" = "xyes")
   AM_CONDITIONAL(HAVE_CPU_ARM,        test "x$HAVE_CPU_ARM" = "xyes")
   AM_CONDITIONAL(HAVE_CPU_SPARC,      test "x$HAVE_CPU_SPARC" = "xyes")