mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-05 15:42:32 +08:00
[svn-r3161] Purpose:
Prepare for 1.4.0beta1 release README: src/H5public.h: Updated with 1.4.0beta1 version information. configure.in: Changed default setting to --enable-production --disable-debug. configure: Derived from configure.in via autoconf. Platforms tested: Eirene (linux) running just the configure command and compared difference with previous configure output to verify expected difference.
This commit is contained in:
parent
ae97d70661
commit
976700c212
2
README
2
README
@ -1,4 +1,4 @@
|
||||
This is hdf5-1.3.37 currently under development
|
||||
This is hdf5-1.4.0beta1 released on December 19, 2000.
|
||||
Please refer to the INSTALL file for installation instructions.
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
|
8
configure
vendored
8
configure
vendored
@ -1786,13 +1786,13 @@ fi
|
||||
|
||||
|
||||
case "X-$enable_production" in
|
||||
X-yes)
|
||||
X-|X-yes)
|
||||
echo "$ac_t"""production"" 1>&6
|
||||
CONFIG_MODE=production
|
||||
CFLAGS="$CFLAGS $PROD_CFLAGS"
|
||||
CPPFLAGS="$CPPFLAGS $PROD_CPPFLAGS"
|
||||
;;
|
||||
X-|X-no)
|
||||
X-no)
|
||||
echo "$ac_t"""development"" 1>&6
|
||||
CONFIG_MODE=development
|
||||
CFLAGS="$CFLAGS $DEBUG_CFLAGS"
|
||||
@ -8996,7 +8996,7 @@ fi
|
||||
|
||||
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"
|
||||
echo "$ac_t""default ($DEBUG_PKG)" 1>&6
|
||||
@ -9006,7 +9006,7 @@ case "X-$DEBUG_PKG" in
|
||||
CPPFLAGS="$CPPFLAGS -UNDEBUG"
|
||||
echo "$ac_t""all ($DEBUG_PKG)" 1>&6
|
||||
;;
|
||||
X-no|X-none)
|
||||
X-|X-no|X-none)
|
||||
echo "$ac_t""none" 1>&6
|
||||
DEBUG_PKG=
|
||||
CPPFLAGS="$CPPFLAGS -DNDEBUG"
|
||||
|
@ -348,13 +348,13 @@ AC_ARG_ENABLE(production,
|
||||
[ --enable-production Determines how to run the compiler.])
|
||||
|
||||
case "X-$enable_production" in
|
||||
X-yes)
|
||||
X-|X-yes)
|
||||
AC_MSG_RESULT("production")
|
||||
CONFIG_MODE=production
|
||||
CFLAGS="$CFLAGS $PROD_CFLAGS"
|
||||
CPPFLAGS="$CPPFLAGS $PROD_CPPFLAGS"
|
||||
;;
|
||||
X-|X-no)
|
||||
X-no)
|
||||
AC_MSG_RESULT("development")
|
||||
CONFIG_MODE=development
|
||||
CFLAGS="$CFLAGS $DEBUG_CFLAGS"
|
||||
@ -1092,7 +1092,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))
|
||||
@ -1102,7 +1102,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"
|
||||
|
@ -55,9 +55,9 @@ static char RcsId[] = "@(#)$Revision$";
|
||||
|
||||
/* Version numbers */
|
||||
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
|
||||
#define H5_VERS_MINOR 3 /* For minor interface/format changes */
|
||||
#define H5_VERS_RELEASE 37 /* For tweaks, bug-fixes, or development */
|
||||
#define H5_VERS_SUBRELEASE "" /* For pre-releases like snap0 */
|
||||
#define H5_VERS_MINOR 4 /* For minor interface/format changes */
|
||||
#define H5_VERS_RELEASE 0 /* For tweaks, bug-fixes, or development */
|
||||
#define H5_VERS_SUBRELEASE "beta1" /* For pre-releases like snap0 */
|
||||
/* Empty string for real releases. */
|
||||
|
||||
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
|
||||
|
Loading…
Reference in New Issue
Block a user