diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-02-05 03:38:06 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-02-05 03:38:06 +0000 |
commit | f92617db079101dc1a63f5a94d476a1eafe723ba (patch) | |
tree | 538f538a666825056c2d802c9c0df3df3586b610 /configure.in | |
parent | 161e54209ec097d7cce9a76b76622c256442ebcf (diff) |
Remove the --enable-ansi option (#160469)
2005-02-04 Matthias Clasen <mclasen@redhat.com>
* configure.in: Remove the --enable-ansi option (#160469)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/configure.in b/configure.in index 00671c50a..e9a7d9596 100644 --- a/configure.in +++ b/configure.in @@ -202,10 +202,6 @@ AC_ARG_ENABLE(mem_pools, [AC_HELP_STRING([--disable-mem-pools], [disable all glib memory pools])],, [disable_mem_pools=no]) -AC_ARG_ENABLE(ansi, - [AC_HELP_STRING([--enable-ansi], - [turn on strict ansi [default=no]])],, - [enable_ansi=no]) AC_ARG_ENABLE(threads, [AC_HELP_STRING([--enable-threads], [turn on basic thread support [default=yes] @@ -461,18 +457,6 @@ if test "x$GCC" = "xyes"; then *[[\ \ ]]-Wall[[\ \ ]]*) ;; *) CFLAGS="$CFLAGS -Wall" ;; esac - - if test "x$enable_ansi" = "xyes"; then - case " $CFLAGS " in - *[[\ \ ]]-ansi[[\ \ ]]*) ;; - *) CFLAGS="$CFLAGS -ansi" ;; - esac - - case " $CFLAGS " in - *[[\ \ ]]-pedantic[[\ \ ]]*) ;; - *) CFLAGS="$CFLAGS -pedantic" ;; - esac - fi fi dnl |