From 87370e2852b4dc3c6b32d4d82aa14f76648b19d3 Mon Sep 17 00:00:00 2001 From: Jonas Suhr Christensen Date: Fri, 17 May 2013 11:02:11 +0200 Subject: Consistent naming of SSEFLAGS variable. --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index 6fea409..d149ce9 100644 --- a/configure.in +++ b/configure.in @@ -334,13 +334,13 @@ fi #AC_MSG_RESULT([SSE: $enable_sse]) if test "x$enable_sse" = "x3"; then AC_MSG_RESULT([Setting sse level 3]) - SSE_FLAGS="-DSSE -msse -msse2 -mss3" + SSEFLAGS="-DSSE -msse -msse2 -mss3" elif test "x$enable_sse" = "x2"; then AC_MSG_RESULT([Setting sse level 2]) - SSE_FLAGS="-DSSE -msse -msse2" + SSEFLAGS="-DSSE -msse -msse2" elif test "x$enable_sse" = "x1"; then AC_MSG_RESULT([Setting sse level 1]) - SSE_FLAGS="-DSSE -msse" + SSEFLAGS="-DSSE -msse" elif test "x$enable_sse" = "xauto"; then AC_MSG_RESULT([Auto setting sse level]) AC_MSG_CHECKING([for sse3 instructions]) -- cgit v1.2.3