|
From: <bul...@us...> - 2013-06-11 06:12:25
|
Revision: 22807
http://sourceforge.net/p/bzflag/code/22807
Author: bullet_catcher
Date: 2013-06-11 06:12:24 +0000 (Tue, 11 Jun 2013)
Log Message:
-----------
Revert r22806 and add the appropriate -std= compiler option to user_CXXFLAGS so it will be present in debug mode.
Revision Links:
--------------
http://sourceforge.net/p/bzflag/code/22806
Modified Paths:
--------------
trunk/bzflag/configure.ac
Modified: trunk/bzflag/configure.ac
===================================================================
--- trunk/bzflag/configure.ac 2013-06-10 23:44:37 UTC (rev 22806)
+++ trunk/bzflag/configure.ac 2013-06-11 06:12:24 UTC (rev 22807)
@@ -214,9 +214,11 @@
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
- CONF_CXXFLAGS="$CONF_CXXFLAGS -std=c++0x"
+ CXXFLAGS="$CXXFLAGS -std=c++0x"
+ user_CXXFLAGS="$user_CXXFLAGS -std=c++0x" # for --enable-debug
elif test "x$ax_cv_cxx_compile_cxx0x_gxx" = xyes; then
- CONF_CXXFLAGS="$CONF_CXXFLAGS -std=gnu++0x"
+ CXXFLAGS="$CXXFLAGS -std=gnu++0x"
+ user_CXXFLAGS="$user_CXXFLAGS -std=gnu++0x" # for --enable-debug
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.
|