From a8533e99afa2834e929b9a7ea0e7d9c754cf6d51 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 15 Nov 2000 16:13:09 -0500 Subject: [PATCH] [svn-r2939] Purpose: Bug Description: When copying the --enable-production stuff, I forgot to change the CFLAGS to CXXFLAGS... Platforms tested: Solaris --- c++/configure | 4 ++-- c++/configure.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/c++/configure b/c++/configure index c8a42c4828..ebd6b91f90 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 c4899500ed..9770738185 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" ;; *)