Parcourir la source

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


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1254 e5f2f494-b856-4b98-b285-d166d9295462

Jeremy C. Reed il y a 15 ans
Parent
commit
36c1a6d261
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      configure.ac

+ 3 - 1
configure.ac

@@ -19,9 +19,11 @@ AX_COMPILER_VENDOR
 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.