[svn] commit: r1254 - /trunk/configure.ac
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Mar 10 00:20:35 UTC 2010
Author: jreed
Date: Wed Mar 10 00:20:35 2010
New Revision: 1254
Log:
Don't override CXXFLAGS, just append.
(So user can choose there own on configure line and
also don't lose what configure detects and assigns.)
Add a TODO: check for _sqlite3.py module
Modified:
trunk/configure.ac
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Wed Mar 10 00:20:35 2010
@@ -19,9 +19,11 @@
m4_define([_AM_PYTHON_INTERPRETER_LIST], [python python3 python3.1])
AM_PATH_PYTHON([3.1])
+# TODO: check for _sqlite3.py module
+
# default compiler warning settings
if test "X$GCC" = "Xyes"; then
-CXXFLAGS="-g -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
+CXXFLAGS="$CXXFLAGS -g -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare"
fi
# produce PIC unless we disable shared libraries. need this for python bindings.
More information about the bind10-changes
mailing list