diff options
| author | Jonas Suhr Christensen <jsc@umbraculum.org> | 2013-05-17 11:02:11 +0200 | 
|---|---|---|
| committer | Jonas Suhr Christensen <jsc@umbraculum.org> | 2013-05-17 11:02:11 +0200 | 
| commit | 87370e2852b4dc3c6b32d4d82aa14f76648b19d3 (patch) | |
| tree | 55a41afd248704b8ab06ce4bab70af3fc53ad265 | |
| parent | 6d83ffd8de5ee866739d8a3cb7805e40d58276b0 (diff) | |
Consistent naming of SSEFLAGS variable.
| -rw-r--r-- | configure.in | 6 | 
1 files 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])  | 
