summaryrefslogtreecommitdiff
path: root/lib/make/configure
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-03-02 11:18:04 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-03-02 11:18:04 +0000
commit039096b54685433eba3daa5205d07cf3646cda6a (patch)
treecb26c804f42a4a2eabec190a6857eb304a6f0934 /lib/make/configure
parent3c9ee6d1dc3a542accf56e3e80f4c9157115ae41 (diff)
Removed '-Wstrict-prototypes -Wmissing-prototypes' from CXX_WARN_FLAGS.
According to the gcc man page, these options are for compiling C code only. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3996 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/configure')
-rwxr-xr-xlib/make/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/make/configure b/lib/make/configure
index 697ea37e..d3e34ea4 100755
--- a/lib/make/configure
+++ b/lib/make/configure
@@ -4945,7 +4945,7 @@ fi
if test -z "$CXX_WARN_FLAGS" -a \( "$CXX" = 'c++' -o "$CXX" = 'g++' \) ; then
- CXX_WARN_FLAGS='-Wall -W -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Winline -Woverloaded-virtual'
+ CXX_WARN_FLAGS='-Wall -W -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Winline -Woverloaded-virtual'
else
: ${CXX_WARN_FLAGS=''}
fi