From b668387d917cd80c5d4b9631bc0008b6a014c083 Mon Sep 17 00:00:00 2001 From: Martin Lucina Date: Sat, 10 Apr 2010 17:04:33 +0200 Subject: Remove -Wxxx gcc-isms from subdir Makefiles --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index ae944b4..a196a35 100644 --- a/configure.in +++ b/configure.in @@ -365,14 +365,14 @@ fi # -Wall, -Werror and -pedantic are GNU compiler specific. # Also, these break OpenPGM so don't specify them if we are building with it. if test "x$gnu_compilers" = "xyes" -a "x$pgm_ext" = "xno"; then - LIBZMQ_EXTRA_CXXFLAGS="${LIBZMQ_EXTRA_CXXFLAGS} -Wall" + CPPFLAGS="-Wall $CPPFLAGS" if test "x$pedantic" = "xyes"; then - LIBZMQ_EXTRA_CXXFLAGS="${LIBZMQ_EXTRA_CXXFLAGS} -pedantic" + CPPFLAGS="-pedantic $CPPFLAGS" fi if test "x$werror" = "xyes"; then - LIBZMQ_EXTRA_CXXFLAGS="${LIBZMQ_EXTRA_CXXFLAGS} -Werror" + CPPFLAGS="-Werror $CPPFLAGS" fi fi -- cgit v1.2.3