From: Thomas Vander Stichele Date: Tue, 6 Jun 2006 14:05:42 +0000 (+0000) Subject: m4/gst-arch.m4: add PPC64 so we can have separate structure sizes for it X-Git-Tag: RELEASE-0_10_2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5d58e7652bf38a637dceca167d6e47e7794b2b52;p=platform%2Fupstream%2Fgst-common.git m4/gst-arch.m4: add PPC64 so we can have separate structure sizes for it Original commit message from CVS: * m4/gst-arch.m4: add PPC64 so we can have separate structure sizes for it --- diff --git a/ChangeLog b/ChangeLog index 04edd09..47d1f0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-06-06 Thomas Vander Stichele + + * m4/gst-arch.m4: + add PPC64 so we can have separate structure sizes for it + 2006-06-05 Edward Hervey * gtk-doc.mak: diff --git a/m4/gst-arch.m4 b/m4/gst-arch.m4 index 5f58395..6e235ac 100644 --- a/m4/gst-arch.m4 +++ b/m4/gst-arch.m4 @@ -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")