[svn-r286] Changed release name from "hdf-5.0.0a" to "hdf5-1.0.0a" to explicitly make it

clear that this release is not [currently] compatible with the older HDF
releases.
This commit is contained in:
Quincey Koziol 1998-02-17 15:19:13 -05:00
parent 3f92002237
commit 33258c0073
5 changed files with 13 additions and 13 deletions

18
INSTALL
View File

@ -1,34 +1,34 @@
This file contains instructions for the installation of HDF5 on
Unix-like systems. First, one must obtain a tarball of the HDF5
release from ---FIXME---->http://hdf5.ncsa.uiuc.edu<----FIXME---
release from the ftp://hdf.ncsa.uiuc.edu/pub/dist/HDF5
repository. The files are available in uncompressed tar, gzip, bzip2,
and compress formats.
For those that like to live dangerously and don't like to read ;-) you
can do the following:
$ tar xf hdf-5.0.0a.tar
$ cd hdf-5.0.0a
$ tar xf hdf5-1.0.0a.tar
$ cd hdf5-1.0.0a
$ make test
$ make install # Optional
Step 1. Unpack the source tree.
* The tarball will unpack into an hdf-5.0.0a directory with one of
* The tarball will unpack into an hdf5-1.0.0a directory with one of
the following commands:
$ tar xf hdf-5.0.0a.tar OR
$ gunzip <hdf-5.0.0a.tar.gz |tar xf - OR
$ bunzip2 <hdf-5.0.0a.tar.bz2 |tar xf - OR
$ uncompress -c <hdf-5.0.0a.tar.Z | tar xf -
$ tar xf hdf5-1.0.0a.tar OR
$ gunzip <hdf5-1.0.0a.tar.gz |tar xf - OR
$ bunzip2 <hdf5-1.0.0a.tar.bz2 |tar xf - OR
$ uncompress -c <hdf5-1.0.0a.tar.Z | tar xf -
Step 2. Configure makefiles.
* HDF5 uses the GNU autoconf program for configuration. Most
installations can be configured by typing just (from the
hdf-5.0.0a directory)
hdf5-1.0.0a directory)
$ ./configure

2
README
View File

@ -1,4 +1,4 @@
This is the hdf-5.0.0a prototype release of the HDF5 library.
This is the hdf5-1.0.0a prototype release of the HDF5 library.
This release is almost fully functional for the entire API defined in the
documentation, see the RELEASE file in this directory for information

View File

@ -1,4 +1,4 @@
Release information for hdf-5.0.0a
Release information for hdf5-1.0.0a
----------------------------------
This release is an beta release for functionality necessary for the

View File

@ -145,7 +145,7 @@ sub release (@) {
# We build the release from above the root of the source tree so the
# hdf5 directory appears as part of the name in the tar file. We create
# a temporary symlink called something like `hdf-5.0.0a' that points to
# a temporary symlink called something like `hdf5-1.0.0a' that points to
# our current working directory.
$_ = cwd;
my ($parent,$root) = m%(.*)/(.*)$% or die "cannot split directory";

View File

@ -22,7 +22,7 @@
#include <H5public.h> /* Include Public Definitions */
/* Version #'s of library code */
#define HDF5_MAJOR_VERSION 5 /* For major interface changes */
#define HDF5_MAJOR_VERSION 1 /* For major interface changes */
#define HDF5_MINOR_VERSION 0 /* For minor interface changes */
#define HDF5_RELEASE_VERSION 0 /* For interface tweaks & bug-fixes */
#define HDF5_PATCH_VERSION 0 /* For small groups of bug fixes */