aboutsummaryrefslogtreecommitdiffstats
path: root/epan/configure.in
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-02-08 01:15:53 +0000
committerJörg Mayer <jmayer@loplof.de>2004-02-08 01:15:53 +0000
commit5804f151644b06cce5b47e10f38c04e8cb342de8 (patch)
tree433fa462a3ff254cd6a77037aed2ccf59b63e09f /epan/configure.in
parentf992f12aa4c1bc8045ff2a772208a0848fbfeb93 (diff)
Move -pedandic & co back into extra-flags (prepare for dissectors moving to epan/)
svn path=/trunk/; revision=10007
Diffstat (limited to 'epan/configure.in')
-rw-r--r--epan/configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/configure.in b/epan/configure.in
index d233c84277..7545ecef75 100644
--- a/epan/configure.in
+++ b/epan/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.57 2004/02/07 05:44:07 jmayer Exp $
+# $Id: configure.in,v 1.58 2004/02/08 01:15:53 jmayer Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@@ -47,12 +47,12 @@ AC_ARG_WITH(extra-gcc-checks,
[
if test $withval != no
then
- ethereal_extra_gcc_flags=" "
+ ethereal_extra_gcc_flags=" -Wcast-qual -Wcast-align -Wbad-function-cast -pedantic"
fi
],)
AC_MSG_CHECKING(to see if we can add '-Wall -W$ethereal_extra_gcc_flags' to CFLAGS)
if test x$GCC != x ; then
- CFLAGS="-D_U_=\"__attribute__((unused))\" -Wall -W -Wcast-qual -Wcast-align -Wbad-function-cast -pedantic $ethereal_extra_gcc_flags $CFLAGS"
+ CFLAGS="-D_U_=\"__attribute__((unused))\" -Wall -W $ethereal_extra_gcc_flags $CFLAGS"
AC_MSG_RESULT(yes)
else
CFLAGS="-D_U_=\"\" $CFLAGS"