summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-11-15 21:13:09 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-11-15 21:13:09 (GMT)
commita8533e99afa2834e929b9a7ea0e7d9c754cf6d51 (patch)
treed1f798cf3c971bee2ac53c503f87e5284aa40113 /c++
parente89c46e6b9cee555e72d6c8fe4e9be9d3dfe6381 (diff)
downloadhdf5-a8533e99afa2834e929b9a7ea0e7d9c754cf6d51.zip
hdf5-a8533e99afa2834e929b9a7ea0e7d9c754cf6d51.tar.gz
hdf5-a8533e99afa2834e929b9a7ea0e7d9c754cf6d51.tar.bz2
[svn-r2939] Purpose:
Bug Description: When copying the --enable-production stuff, I forgot to change the CFLAGS to CXXFLAGS... Platforms tested: Solaris
Diffstat (limited to 'c++')
-rwxr-xr-xc++/configure4
-rw-r--r--c++/configure.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/c++/configure b/c++/configure
index c8a42c4..ebd6b91 100755
--- a/c++/configure
+++ b/c++/configure
@@ -1813,13 +1813,13 @@ case "X-$enable_production" in
X-|X-no)
echo "$ac_t"""development"" 1>&6
CONFIG_MODE=development
- CXXFLAGS="$CFLAGS $DEBUG_CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $DEBUG_CXXFLAGS"
CPPFLAGS="$CPPFLAGS $DEBUG_CPPFLAGS"
;;
X-pg|X-profile)
echo "$ac_t"""profile"" 1>&6
CONFIG_MODE=profile
- CXXFLAGS="$CFLAGS $PROFILE_CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $PROFILE_CXXFLAGS"
CPPFLAGS="$CPPFLAGS $PROFILE_CPPFLAGS"
;;
*)
diff --git a/c++/configure.in b/c++/configure.in
index c489950..9770738 100644
--- a/c++/configure.in
+++ b/c++/configure.in
@@ -220,13 +220,13 @@ case "X-$enable_production" in
X-|X-no)
AC_MSG_RESULT("development")
CONFIG_MODE=development
- CXXFLAGS="$CFLAGS $DEBUG_CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $DEBUG_CXXFLAGS"
CPPFLAGS="$CPPFLAGS $DEBUG_CPPFLAGS"
;;
X-pg|X-profile)
AC_MSG_RESULT("profile")
CONFIG_MODE=profile
- CXXFLAGS="$CFLAGS $PROFILE_CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $PROFILE_CXXFLAGS"
CPPFLAGS="$CPPFLAGS $PROFILE_CPPFLAGS"
;;
*)