diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2007-08-10 10:44:43 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2007-08-10 10:44:43 +0000 |
commit | 6c9ae227f74a6879e587b11f37c51bda1581d2ce (patch) | |
tree | d77838fe2d8ae75853554ef470dd91187b8668c4 /externals/sprinkler | |
parent | b37a24ddca7971f51c1a12173bb2c6f660e948aa (diff) |
+ tiny configure fix
svn path=/trunk/; revision=8504
Diffstat (limited to 'externals/sprinkler')
-rw-r--r-- | externals/sprinkler/configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/externals/sprinkler/configure.in b/externals/sprinkler/configure.in index da14aee5..d7b85641 100644 --- a/externals/sprinkler/configure.in +++ b/externals/sprinkler/configure.in @@ -124,7 +124,7 @@ AC_ARG_ENABLE([forward], [--enable-forward], [allow backwards-compatible non-MAX "forward" alias (default=no)])) -if test "$enable_forward" == "yes" ; then +if test "$enable_forward" = "yes" ; then AC_MSG_RESULT(yes) NON_MAX_FORWARD="yes" DFLAGS="$DFLAGS -DNON_MAX_FORWARD" @@ -165,7 +165,7 @@ fi AC_MSG_CHECKING([whether we are building a debug version]) AC_ARG_ENABLE([debug], AC_HELP_STRING([--enable-debug],[build debug version (default=no)])) -if test "$enable_debug" == "yes" ; then +if test "$enable_debug" = "yes" ; then AC_MSG_RESULT(yes) DEBUG="yes" AC_DEFINE(SPRINKLER_DEBUG,1, @@ -184,7 +184,7 @@ LD=ld if test `uname -s` = Linux; then LFLAGS="-export_dynamic -shared" - if test "$DEBUG" == "no"; then + if test "$DEBUG" = "no"; then #OFLAGS="-O6 -funroll-loops -fomit-frame-pointer -finline-limit-10000000" OFLAGS="-O3 -funroll-loops -fomit-frame-pointer -pipe" else @@ -225,7 +225,7 @@ then PDEXT=pd_darwin DFLAGS="$DFLAGS -DMACOSX" - if test "$DEBUG" == "no"; then + if test "$DEBUG" = "no"; then OFLAGS="-O2" else OFLAGS="-g" |