|
From: <bul...@us...> - 2013-05-29 06:43:58
|
Revision: 22778
http://sourceforge.net/p/bzflag/code/22778
Author: bullet_catcher
Date: 2013-05-29 06:43:55 +0000 (Wed, 29 May 2013)
Log Message:
-----------
On Linux systems, replace -W with -Wextra now that GCC 4.3 and higher is required for -std=c++0x, and add -Wcast-qual.
Modified Paths:
--------------
trunk/bzflag/configure.ac
Modified: trunk/bzflag/configure.ac
===================================================================
--- trunk/bzflag/configure.ac 2013-05-28 17:43:39 UTC (rev 22777)
+++ trunk/bzflag/configure.ac 2013-05-29 06:43:55 UTC (rev 22778)
@@ -670,9 +670,7 @@
case $host_os in
linux*)
AC_DEFINE(HALF_RATE_AUDIO, 1, [Half rate Audio])
- #FLAGS="$FLAGS -Wall -W -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wcast-qual -Wwrite-strings -Wconversion -Wredundant-decls"
- # time to use -Wextra instead of -W ? (gcc 3.4+)
- FLAGS="-Wall -W -Wundef -Wshadow"
+ FLAGS="-Wall -Wextra -Wcast-qual -Wshadow -Wundef" # -Wconversion -Wfloat-equal -Wpointer-arith -Wredundant-decls -Wwrite-strings
CONF_CFLAGS="$CONF_CFLAGS $FLAGS"
CONF_CXXFLAGS="$CONF_CXXFLAGS $FLAGS -pedantic"
case $host_vendor in
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|