[svn] commit: r531 - /branches/parkinglot/configure.ac
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Jan 26 22:22:49 UTC 2010
Author: jinmei
Date: Tue Jan 26 22:22:49 2010
New Revision: 531
Log:
#-Woverloaded-virtual will produce so many warnings. Suppress them for rapid
# prototyping, but we should soon fix the code, rather than ignoring the
# warnings!!
Modified:
branches/parkinglot/configure.ac
Modified: branches/parkinglot/configure.ac
==============================================================================
--- branches/parkinglot/configure.ac (original)
+++ branches/parkinglot/configure.ac Tue Jan 26 22:22:49 2010
@@ -19,7 +19,11 @@
# default compiler warning settings
if test "X$GCC" = "Xyes"; then
-CXXFLAGS="-g -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
+#-Woverloaded-virtual will produce so many warnings. Suppress them for rapid
+# prototyping, but we should soon fix the code, rather than ignoring the
+# warnings!!
+#CXXFLAGS="-g -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
+CXXFLAGS="-g -Wall -Wwrite-strings -Wno-sign-compare"
fi
# produce PIC unless we disable shared libraries. need this for python bindings.
More information about the bind10-changes
mailing list