Configure Update

Add a disable option to turn off the default optimization options so the user may set their own in a CFLAGS.
This commit is contained in:
John Safranek 2018-03-27 16:41:39 -07:00
parent 477d2413cd
commit e6a19bb1e8

View File

@ -3843,6 +3843,14 @@ then
fi
# Default optimization enable
AC_ARG_ENABLE([optimized],
[AS_HELP_STRING([--enable-optimized],[Enable default optimization options (default: enabled)])],
[ ENABLED_OPTIMIZED=$enableval ],
[ ENABLED_OPTIMIZED=yes ]
)
# check if PSK was enabled for conditionally running psk.test script
AM_CONDITIONAL([BUILD_PSK], [test "x$ENABLED_PSK" = "xyes"])
@ -4056,6 +4064,7 @@ then
AM_CFLAGS="$AM_CFLAGS -Wall -Wno-unused"
if test "$ax_enable_debug" = "no"
then
AS_IF([test "x$ENABLED_OPTIMIZED" = "xyes"], [
if test "$ENABLED_FASTMATH" = "yes"
then
AM_CFLAGS="$AM_CFLAGS $OPTIMIZE_FAST_CFLAGS"
@ -4066,6 +4075,7 @@ then
else
AM_CFLAGS="$AM_CFLAGS $OPTIMIZE_CFLAGS"
fi
])
fi
fi