|
From: <bla...@us...> - 2013-06-10 23:44:41
|
Revision: 22806
http://sourceforge.net/p/bzflag/code/22806
Author: blast007
Date: 2013-06-10 23:44:37 +0000 (Mon, 10 Jun 2013)
Log Message:
-----------
Use CONF_CXXFLAGS instead of CXXFLAGS to prevent the options from being overwritten when building in debug mode.
Modified Paths:
--------------
trunk/bzflag/configure.ac
Modified: trunk/bzflag/configure.ac
===================================================================
--- trunk/bzflag/configure.ac 2013-06-09 07:20:18 UTC (rev 22805)
+++ trunk/bzflag/configure.ac 2013-06-10 23:44:37 UTC (rev 22806)
@@ -214,9 +214,9 @@
AX_CXX_COMPILE_STDCXX_0X
if test "x$ax_cv_cxx_compile_cxx0x_native" != xyes; then
if test "x$ax_cv_cxx_compile_cxx0x_cxx" = xyes; then
- CXXFLAGS="$CXXFLAGS -std=c++0x"
+ CONF_CXXFLAGS="$CONF_CXXFLAGS -std=c++0x"
elif test "x$ax_cv_cxx_compile_cxx0x_gxx" = xyes; then
- CXXFLAGS="$CXXFLAGS -std=gnu++0x"
+ CONF_CXXFLAGS="$CONF_CXXFLAGS -std=gnu++0x"
else
AC_MSG_ERROR([A c++ compiler with C++0x support is required to build BZFlag])
fi
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|