diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-07-03 15:38:02 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-07-03 15:38:02 (GMT) |
commit | f1816a8c47f72d653c060634ef37bf76e6469b03 (patch) | |
tree | a288a8a23e0702b1fef4663f9735aacac16ff7ea /c++/configure.in | |
parent | c5b2fb2a87c7c2cfb5c45685faf670655bbe7d29 (diff) | |
download | hdf5-f1816a8c47f72d653c060634ef37bf76e6469b03.zip hdf5-f1816a8c47f72d653c060634ef37bf76e6469b03.tar.gz hdf5-f1816a8c47f72d653c060634ef37bf76e6469b03.tar.bz2 |
[svn-r7147] Purpose:
Changed enable-production as the default for release.
Platforms tested:
Only in eirene using pgcc and pgCC.
Did not use h5committest since the change is trivial
and Elena will test it at once. :-)
Misc. update:
Diffstat (limited to 'c++/configure.in')
-rw-r--r-- | c++/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/configure.in b/c++/configure.in index cb80286..11cce52 100644 --- a/c++/configure.in +++ b/c++/configure.in @@ -253,7 +253,7 @@ AC_ARG_ENABLE([production], [Determines how to run the compiler.])]) case "X-$enable_production" in - X-yes) + X-|X-yes) AC_MSG_RESULT("production") dnl Remove the "-g" flag from CFLAGS & CXXFLAGS if it's in there. @@ -282,7 +282,7 @@ case "X-$enable_production" in CXXFLAGS="$CXXFLAGS $PROD_CXXFLAGS" CPPFLAGS="$CPPFLAGS $PROD_CPPFLAGS" ;; - X-|X-no) + X-no) AC_MSG_RESULT("development") CONFIG_MODE=development CXXFLAGS="$CXXFLAGS $DEBUG_CXXFLAGS" |