From: Julian Seward Date: Sat, 20 Apr 2002 15:49:34 +0000 (+0000) Subject: Sigh. Remove -Werror because it causes the ./configure test for working X-Git-Tag: svn/VALGRIND_1_0_3~346 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d49f33a44ecd8c14d7bbbd951b53ada285c34bb;p=thirdparty%2Fvalgrind.git Sigh. Remove -Werror because it causes the ./configure test for working const qualifier to fail. This causes config.h to #define const to nothing, which causes the whole compilation to fail. What's the right way to fix this? I really like having -Werror. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@105 --- diff --git a/configure.in b/configure.in index ebb40ee5ba..92e500e478 100644 --- a/configure.in +++ b/configure.in @@ -70,7 +70,7 @@ AC_MSG_RESULT([none]) AC_SUBST(PREFERRED_STACK_BOUNDARY) -CFLAGS="-Winline -Wall -Werror -Wshadow -O -fomit-frame-pointer -g" +CFLAGS="-Winline -Wall -Wshadow -O -fomit-frame-pointer -g" AC_SUBST(CFLAGS) # Checks for the platform