diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 21:13:09 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 21:13:09 (GMT) |
commit | a8533e99afa2834e929b9a7ea0e7d9c754cf6d51 (patch) | |
tree | d1f798cf3c971bee2ac53c503f87e5284aa40113 /c++ | |
parent | e89c46e6b9cee555e72d6c8fe4e9be9d3dfe6381 (diff) | |
download | hdf5-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-x | c++/configure | 4 | ||||
-rw-r--r-- | c++/configure.in | 4 |
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" ;; *) |