diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2003-07-03 04:17:02 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2003-07-03 04:17:02 (GMT) |
commit | 0d1aef3852a52c5e20a00932ff3f791cec74935b (patch) | |
tree | 3a7a4c0dbf69cb49ad1001643b03fd7b32deff8d /configure.in | |
parent | 9f27091f4bb3065b31ba2cea7ff189dcbf74d548 (diff) | |
download | hdf5-0d1aef3852a52c5e20a00932ff3f791cec74935b.zip hdf5-0d1aef3852a52c5e20a00932ff3f791cec74935b.tar.gz hdf5-0d1aef3852a52c5e20a00932ff3f791cec74935b.tar.bz2 |
[svn-r7145] Purpose:
update for release
Description:
Set the version information to 1.6.0-pre1 to get ready for
v1.6 release.
Platforms tested:
h5committested.
Misc. update:
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 5b9ec0f..2512974 100644 --- a/configure.in +++ b/configure.in @@ -24,7 +24,7 @@ dnl dnl NOTE: Don't forget to change the version number here when we do a dnl release!!! dnl -AC_INIT([HDF5], [1.5.63], [hdfhelp@ncsa.uiuc.edu]) +AC_INIT([HDF5], [1.6.0-pre1], [hdfhelp@ncsa.uiuc.edu]) AC_CONFIG_SRCDIR([src/H5.c]) AC_CONFIG_HEADER([src/H5config.h]) @@ -439,7 +439,7 @@ AC_ARG_ENABLE(production, [Determines how to run the compiler.])]) case "X-$enable_production" in - X-yes) + X-|X-yes) enable_production="yes" AC_MSG_RESULT([production]) @@ -459,7 +459,7 @@ case "X-$enable_production" in CFLAGS="$CFLAGS $PROD_CFLAGS" CPPFLAGS="$CPPFLAGS $PROD_CPPFLAGS" ;; - X-|X-no) + X-no) enable_production="no" AC_MSG_RESULT([development]) CONFIG_MODE=development @@ -1630,7 +1630,7 @@ AC_ARG_ENABLE([debug], AC_SUBST([DEBUG_PKG]) all_packages="ac,b,d,e,f,g,hg,hl,i,mf,mm,o,p,s,t,v,z" case "X-$DEBUG_PKG" in - X-|X-yes) + X-yes) DEBUG_PKG="d,e,f,g,hg,i,mm,o,p,s,t,v,z" CPPFLAGS="$CPPFLAGS -UNDEBUG" AC_MSG_RESULT(default ($DEBUG_PKG)) @@ -1640,7 +1640,7 @@ case "X-$DEBUG_PKG" in CPPFLAGS="$CPPFLAGS -UNDEBUG" AC_MSG_RESULT(all ($DEBUG_PKG)) ;; - X-no|X-none) + X-|X-no|X-none) AC_MSG_RESULT(none) DEBUG_PKG= CPPFLAGS="$CPPFLAGS -DNDEBUG" |