From 2578cee6018066ecb8a82a68e06740e3806a315f Mon Sep 17 00:00:00 2001 From: Robb Matzke Date: Thu, 7 Jan 1999 06:37:16 -0500 Subject: [svn-r1008] Changes since 19981217 ---------------------- ./MANIFEST Removed some ddl files from tools/testfiles that are no longer part of CVS. Added new enum.c test. ./configure [REGENERATED] ./configure.in Changed printf long long format detection to favor `L' over `ll'. --- MANIFEST | 1 + README | 44 +------------------------------------------- configure | 23 +++++++++++------------ configure.in | 5 ++--- 4 files changed, 15 insertions(+), 58 deletions(-) diff --git a/MANIFEST b/MANIFEST index 64493e9..c842cd9 100644 --- a/MANIFEST +++ b/MANIFEST @@ -313,6 +313,7 @@ ./test/cmpd_dset.c ./test/dsets.c ./test/dtypes.c +./test/enum.c ./test/extend.c ./test/external.c ./test/fillval.c diff --git a/README b/README index 0368e96..270c990 100644 --- a/README +++ b/README @@ -1,43 +1 @@ -This is hdf5-1.1.37 released on Sat Dec 19 04:37:18 CST 1998 -Please refer to the INSTALL file for installation instructions. ------------------------------------------------------------------------------- - -This release is almost fully functional for the entire API defined in the -documentation, see the RELEASE file in this directory for information -specific to this release of the library. The INSTALL file contains -instructions on compiling and installing the library. The INSTALL_parallel -file contains instructions on installing the parallel version of the -library. - -Documentation for this release is in the html directory. Start with the -"index.html" in that dictectory. - -Four mailing lists are currently set up for use with the HDF5 -library. - - hdf5 - For general discussion of the HDF5 library with - other users. - - hdf5dev - For discussion of the HDF5 library development - with developers and other interested parties. - - hdf5announce - For announcements of HDF5 related developments, - not a discussion list. - - hdf5cvs - For checkin notices of code development on the library, - not a discussion list. - -To subscribe to a list, send mail to "-request@ncsa.uiuc.edu", -(e.g., hdf5-request@ncsa.uiuc.edu) with "subscribe in the _body_ of the message. Messages to be sent to -the list should be sent to "@ncsa.uiuc.edu". - -Nearly daily code snapshots are now being provided at the following URL: - ftp://hdf.ncsa.uiuc.edu/pub/outgoing/hdf5/snapshots -Please read the readme file in that directory before working with a library -snapshot. - -The HDF5 website is located at http://hdf.ncsa.uiuc.edu/HDF5/ - -Bugs should be reported to hdfhelp@ncsa.uiuc.edu. - +This is hdf5-1.1.39 released on Thu Jan 7 06:31:59 CST 1999 diff --git a/configure b/configure index edb4d5c..1a90849 100755 --- a/configure +++ b/configure @@ -3924,7 +3924,7 @@ echo "configure:3924: checking how to print long long" >&5 if eval "test \"`echo '$''{'hdf5_cv_printf_ll'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - for hdf5_cv_printf_ll in ll q l; do + for hdf5_cv_printf_ll in l L q ll unknown; do if test "$cross_compiling" = yes; then { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else @@ -3953,15 +3953,14 @@ fi done fi -echo "$ac_t""$hdf5_cv_printf_ll" 1>&6 +echo "$ac_t""%${hdf5_cv_printf_ll}d and %${hdf5_cv_printf_ll}u" 1>&6 cat >> confdefs.h <&6 -echo "configure:3965: checking for debug flags" >&5 +echo "configure:3964: checking for debug flags" >&5 # Check whether --enable-debug or --disable-debug was given. if test "${enable_debug+set}" = set; then enableval="$enable_debug" @@ -3993,7 +3992,7 @@ if test "X" != "X$DEBUG_PKG"; then fi echo $ac_n "checking for API tracing""... $ac_c" 1>&6 -echo "configure:3997: checking for API tracing" >&5; +echo "configure:3996: checking for API tracing" >&5; # Check whether --enable-trace or --disable-trace was given. if test "${enable_trace+set}" = set; then enableval="$enable_trace" @@ -4016,7 +4015,7 @@ if test "${enable_parallel+set}" = set; then fi echo $ac_n "checking for parallel support""... $ac_c" 1>&6 -echo "configure:4020: checking for parallel support" >&5; +echo "configure:4019: checking for parallel support" >&5; @@ -4043,7 +4042,7 @@ case "X-$PARALLEL" in EOF echo $ac_n "checking for main in -lmpi""... $ac_c" 1>&6 -echo "configure:4047: checking for main in -lmpi" >&5 +echo "configure:4046: checking for main in -lmpi" >&5 ac_lib_var=`echo mpi'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4051,14 +4050,14 @@ else ac_save_LIBS="$LIBS" LIBS="-lmpi $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest; then +if { (eval echo configure:4061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4085,7 +4084,7 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for main in -lmpio""... $ac_c" 1>&6 -echo "configure:4089: checking for main in -lmpio" >&5 +echo "configure:4088: checking for main in -lmpio" >&5 ac_lib_var=`echo mpio'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4093,14 +4092,14 @@ else ac_save_LIBS="$LIBS" LIBS="-lmpio $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest; then +if { (eval echo configure:4103: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else diff --git a/configure.in b/configure.in index 29141d4..ef9dac9 100644 --- a/configure.in +++ b/configure.in @@ -396,7 +396,7 @@ dnl default in case none of the others work. dnl AC_MSG_CHECKING(how to print long long) AC_CACHE_VAL(hdf5_cv_printf_ll, - for hdf5_cv_printf_ll in ll q l; do + for hdf5_cv_printf_ll in l L q ll unknown; do AC_TRY_RUN([ #include #include @@ -407,10 +407,9 @@ AC_CACHE_VAL(hdf5_cv_printf_ll, exit (strcmp(s,"1099511627776"));}], break) done) -AC_MSG_RESULT($hdf5_cv_printf_ll) +AC_MSG_RESULT(%${hdf5_cv_printf_ll}d and %${hdf5_cv_printf_ll}u) AC_DEFINE_UNQUOTED(PRINTF_LL_WIDTH,"$hdf5_cv_printf_ll") - dnl ---------------------------------------------------------------------- dnl Turn on debugging by setting compiler flags dnl -- cgit v0.12