diff options
author | David Schleef <ds@schleef.org> | 2002-12-05 06:11:52 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2002-12-05 06:11:52 +0000 |
commit | 2a03a7e08263b4b522a86c4c417e90e62661be62 (patch) | |
tree | 62826d782920064a7f15795ede619686877d33b5 | |
parent | c73793f7022cbc8ffd39f9c0b0587078f47c0b06 (diff) |
Add AM_CONDITIONAL for new archs
Original commit message from CVS:
Add AM_CONDITIONAL for new archs
-rw-r--r-- | m4/gst-arch.m4 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/m4/gst-arch.m4 b/m4/gst-arch.m4 index 8a1bae6..c4c40c4 100644 --- a/m4/gst-arch.m4 +++ b/m4/gst-arch.m4 @@ -4,7 +4,7 @@ dnl ============================================== dnl Determine CPU case "x${target_cpu}" in - xi?86 | k?) HAVE_CPU_I386=yes + xi?86 | xk?) HAVE_CPU_I386=yes AC_DEFINE(HAVE_CPU_I386, 1, [Define if the target CPU is an x86]) dnl FIXME could use some better detection @@ -69,6 +69,11 @@ AM_CONDITIONAL(HAVE_CPU_PPC, test "x$HAVE_CPU_PPC" = "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") +AM_CONDITIONAL(HAVE_CPU_HPPA, test "x$HAVE_CPU_HPPA" = "xyes") +AM_CONDITIONAL(HAVE_CPU_MIPS, test "x$HAVE_CPU_MIPS" = "xyes") +AM_CONDITIONAL(HAVE_CPU_S390, test "x$HAVE_CPU_S390" = "xyes") +AM_CONDITIONAL(HAVE_CPU_IA64, test "x$HAVE_CPU_IA64" = "xyes") +AM_CONDITIONAL(HAVE_CPU_M68K, test "x$HAVE_CPU_M68K" = "xyes") AM_CONDITIONAL(HAVE_LIBMMX, test "x$USE_LIBMMX" = "xyes") ]) |