Mercurial > audlegacy
changeset 4493:a3566b1f5222
Test for SSE2 was quoted one level too much, thus causing the source to be borked and compilation to fail. Fixed.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Mon, 21 Apr 2008 08:07:45 +0300 |
parents | 55262ebeba2d |
children | 0f43f3a5eb12 b42602020349 |
files | configure.ac |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <emmintrin.h> 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"