From 5ae425d8140dfe10671a3088fa311bd953c52bee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Rosen?= Date: Sun, 8 Jan 2006 10:47:30 +0000 Subject: [PATCH] use old name for -Wextra, the new name doesn't seem common enough yet --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index a938802ebec..3b715fc3485 100644 --- a/configure.ac +++ b/configure.ac @@ -61,9 +61,9 @@ AC_ARG_ENABLE([debug], if test "x$debug" = "xyes" then - CXXFLAGS="$CXXFLAGS -DDEBUG -O0 -ggdb3 -Wextra -Wall -ansi " + CXXFLAGS="$CXXFLAGS -DDEBUG -O0 -ggdb3 -W -Wall -ansi " else - CXXFLAGS="$CXXFLAGS -Wextra -Wall -ansi " + CXXFLAGS="$CXXFLAGS -W -Wall -ansi " fi AC_ARG_ENABLE([static],