summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-26 01:47:01 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-26 01:47:01 +0000
commit4d4e4359d64e25c2adee14333e9f192d21425c94 (patch)
treea209e8895c131663b6b2ddd768eeb673bbb9c97b
parent15ec8bd3773cff3bb8cd36c5890569fdc19e1356 (diff)
Added -Woverloaded-virtual to catch annoying module typos
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1192 e03df62e-2008-0410-955e-edbf42e46eb7
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 2f0ec9ae7..e105d66b0 100755
--- a/configure
+++ b/configure
@@ -57,12 +57,12 @@ if [ "$1" = "-update" -o "$2" = "-update" ] ; then
case "$OSNAME" in
FreeBSD)
LDLIBS="-Ldl"
- FLAGS="-fPIC -frtti $OPTIMISATI -Wcomment -Wformat -Wunused -Wshadow -Werror -Wswitch -Wchar-subscripts -Wparentheses"
+ FLAGS="-fPIC -frtti $OPTIMISATI -Wcomment -Wformat -Wunused -Wshadow -Werror -Wswitch -Wchar-subscripts -Wparentheses -Woverloaded-virtual"
MAKEPROG="gmake"
;;
*)
LDLIBS="-ldl"
- FLAGS="-fPIC -frtti $OPTIMISATI -Wcomment -Wformat -Wunused -Wshadow -Werror -Wswitch -Wchar-subscripts -Wparentheses"
+ FLAGS="-fPIC -frtti $OPTIMISATI -Wcomment -Wformat -Wunused -Wshadow -Werror -Wswitch -Wchar-subscripts -Wparentheses -Woverloaded-virtual"
MAKEPROG="make"
;;
esac