# HG changeset patch # User Matti Hamalainen # Date 1208754465 -10800 # Node ID a3566b1f52220e1c78acf71deeb702618aa1c7cd # Parent 55262ebeba2ddceeab0b4d362dea339a9913e998 Test for SSE2 was quoted one level too much, thus causing the source to be borked and compilation to fail. Fixed. diff -r 55262ebeba2d -r a3566b1f5222 configure.ac --- a/configure.ac Mon Apr 21 07:45:44 2008 +0300 +++ b/configure.ac Mon Apr 21 08:07:45 2008 +0300 @@ -311,14 +311,14 @@ AC_MSG_CHECKING([SSE2 support]) aud_my_save_CFLAGS="$CFLAGS" CFLAGS="-msse2" - AC_TRY_RUN([[ + AC_TRY_RUN([ #include int main() { _mm_setzero_pd(); return 0; } - ]],[ + ],[ AC_MSG_RESULT([yes]) AC_DEFINE([HAVE_SSE2], 1, [Define to 1 if your system has SSE2 support]) SIMD_CFLAGS="-msse2"