diff options
author | David Schleef <ds@schleef.org> | 2004-12-14 08:46:06 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2004-12-14 08:46:06 +0000 |
commit | b2638c100721f67b280c3b43b21f1ce1c9b5e316 (patch) | |
tree | 4875556dadb9bc0a465f487450be7ab5ffebde32 | |
parent | 8404d8841f5fd58fe31de09090867115e97c5261 (diff) |
m4/gst-arch.m4: remove MMX stuff, since it doesn't work and isn't needed anywhereRELEASE-0_8_9RELEASE-0_8_8BRANCH-GSTREAMER-0_6-ROOT
Original commit message from CVS:
* m4/gst-arch.m4: remove MMX stuff, since it doesn't work and
isn't needed anywhere
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | m4/gst-arch.m4 | 20 |
2 files changed, 5 insertions, 20 deletions
@@ -1,3 +1,8 @@ +2004-12-14 David Schleef <ds@schleef.org> + + * m4/gst-arch.m4: remove MMX stuff, since it doesn't work and + isn't needed anywhere + 2004-12-08 Thomas Vander Stichele <thomas at apestaart dot org> * gst-autogen.sh: diff --git a/m4/gst-arch.m4 b/m4/gst-arch.m4 index 0facaa2..360aed3 100644 --- a/m4/gst-arch.m4 +++ b/m4/gst-arch.m4 @@ -48,25 +48,6 @@ esac dnl Determine endianness AC_C_BIGENDIAN -dnl Check for MMX-capable compiler -AC_MSG_CHECKING(for MMX-capable compiler) -AC_TRY_RUN([ -#include "include/mmx.h" - -main() -{ movq_r2r(mm0, mm1); return 0; } -], -[ -HAVE_LIBMMX="yes" -AC_MSG_RESULT(yes) -], -HAVE_LIBMMX="no" -AC_MSG_RESULT(no) -, -HAVE_LIBMMX="no" -AC_MSG_RESULT(no) -) - 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_ALPHA, test "x$HAVE_CPU_ALPHA" = "xyes") @@ -78,7 +59,6 @@ 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_CPU_X86_64, test "x$HAVE_CPU_X86_64" = "xyes") -AM_CONDITIONAL(HAVE_LIBMMX, test "x$USE_LIBMMX" = "xyes") ]) |