diff options
author | corvid <corvid@lavabit.com> | 2011-05-15 21:46:53 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-05-15 21:46:53 +0000 |
commit | 9103d4e1afc7506e6b8a805491d646be73a09f96 (patch) | |
tree | 0bc799549aa838c41ae5a05b53de9765e98a0b2d | |
parent | f3d1923b4cf8fe5aaec91fd4cc1ff0aee698fdaa (diff) |
rm --enable-ansi config option
I'd brought this up a couple of times on the list, and we never came to
a definite "Yes, let's rm it!", but it isn't close to working, and we're
never going to take out various C99 things that it disallows, so...
-rw-r--r-- | configure.in | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/configure.in b/configure.in index bf419619..32d1bd20 100644 --- a/configure.in +++ b/configure.in @@ -22,8 +22,6 @@ AC_ARG_ENABLE(gprof, [ --enable-gprof Try to compile and run with pro , enable_gprof=no) AC_ARG_ENABLE(insure, [ --enable-insure Try to compile and run with Insure++], , enable_insure=no) -AC_ARG_ENABLE(ansi, [ --enable-ansi Try to compile and run with ANSI flags], - , enable_ansi=no) AC_ARG_ENABLE(ssl, [ --enable-ssl Enable ssl, https (ALPHA CODE)], , enable_ssl=no) AC_ARG_ENABLE(ipv6, [ --enable-ipv6 Build with support for IPv6], , ) @@ -452,16 +450,6 @@ if eval "test x$GCC = xyes"; then if test "`echo $CFLAGS | grep '\-Waggregate-return' 2> /dev/null`" = ""; then CFLAGS="$CFLAGS -Waggregate-return" fi - - if eval "test x$enable_ansi = xyes"; then - if test "`echo $CFLAGS | grep '\-ansi' 2> /dev/null`" = ""; then - CFLAGS="$CFLAGS -ansi" - fi - - if test "`echo $CFLAGS | grep '\-pedantic' 2> /dev/null`" = ""; then - CFLAGS="$CFLAGS -pedantic" - fi - fi fi dnl ----------- dnl CXX options |