From: oetiker Date: Mon, 14 Jan 2008 17:11:50 +0000 (+0000) Subject: remove c++ warnings flag .. this is not c++ after all X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=814e92743992bce5d50dd662a4f661e50f4ab1ba;hp=b5c9c1c93d5cd445e7173c15e7810ab8a4c040a7;p=rrdtool.git remove c++ warnings flag .. this is not c++ after all git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1272 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/configure.ac b/configure.ac index 7cadc3b..7d77122 100644 --- a/configure.ac +++ b/configure.ac @@ -339,7 +339,7 @@ CFLAGS="$CFLAGS -D_GNU_SOURCE" dnl which flags does the compiler support? if test "x$GCC" = "xyes"; then - for flag in -fno-strict-aliasing -Wall -std=c99 -pedantic -Wundef -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wc++-compat -Wold-style-definition -W; do + for flag in -fno-strict-aliasing -Wall -std=c99 -pedantic -Wundef -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline -Wold-style-definition -W; do oCFLAGS="$CFLAGS" CFLAGS="$CFLAGS $flag" cachename=rd_cv_gcc_flag_`echo $flag|sed 's/[[^A-Za-z]]/_/g'`