diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2006-05-12 21:32:59 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2006-05-12 21:32:59 (GMT) |
commit | 916399d31ed063c0d7e8b7aba864841168a37b93 (patch) | |
tree | 22cc96e85fb638bb864efd1071a9c52234cee14a /vms/c++ | |
parent | cbe0bc01f0b36901ae5b7b0abb5ae1f65a9fef02 (diff) | |
download | hdf5-916399d31ed063c0d7e8b7aba864841168a37b93.zip hdf5-916399d31ed063c0d7e8b7aba864841168a37b93.tar.gz hdf5-916399d31ed063c0d7e8b7aba864841168a37b93.tar.bz2 |
[svn-r12346] Purpose: new feature/maintenance
Description: Added support for Zlib compression on VMS
Solution: Modified command files to add compilation and linking with
the ZLIB library.
Platforms tested: VMS servere with the VAX floating datatype;
will test IEEE option later
Misc. update:
Diffstat (limited to 'vms/c++')
-rw-r--r-- | vms/c++/examples/make.com | 14 | ||||
-rw-r--r-- | vms/c++/test/make.com | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/vms/c++/examples/make.com b/vms/c++/examples/make.com index 053879f..577cff2 100644 --- a/vms/c++/examples/make.com +++ b/vms/c++/examples/make.com @@ -29,47 +29,47 @@ $ type sys$input Creating create $ cxxlink create, - [-.src]hdf5_cplus.olb/lib, - - [-.-.src]hdf5.olb/lib + [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $ type sys$input Creating readdata $ cxxlink readdata, - [-.src]hdf5_cplus.olb/lib, - - [-.-.src]hdf5.olb/lib + [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $! $ type sys$input Creating writedata $ cxxlink writedata, - [-.src]hdf5_cplus.olb/lib, - - [-.-.src]hdf5.olb/lib + [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $ ! $ type sys$input Creating compound $ cxxlink compound, - [-.src]hdf5_cplus.olb/lib, - - [-.-.src]hdf5.olb/lib + [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $! $ type sys$input Creating extend_ds $ cxxlink extend_ds, - [-.src]hdf5_cplus.olb/lib, - - [-.-.src]hdf5.olb/lib + [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $! $ type sys$input Creating chunks $ cxxlink chunks, - [-.src]hdf5_cplus.olb/lib, - - [-.-.src]hdf5.olb/lib + [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $! $ type sys$input Creating h5group $ cxxlink h5group, - [-.src]hdf5_cplus.olb/lib, - - [-.-.src]hdf5.olb/lib + [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $! $ exit diff --git a/vms/c++/test/make.com b/vms/c++/test/make.com index 1d621fd..54cb454 100644 --- a/vms/c++/test/make.com +++ b/vms/c++/test/make.com @@ -32,7 +32,7 @@ $ type sys$input Creating testhdf5 $ cxxlink testhdf5,tattr,tfile, th5s, h5cpputil, - [-.src]hdf5_cplus.olb/lib, [-.-.test]libh5test.olb/lib, - - [-.-.src]hdf5.olb/lib + [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $! $ ! $ ccc dsets @@ -40,7 +40,7 @@ $ type sys$input Creating dsets $ cxxlink dsets, h5cpputil, - [-.src]hdf5_cplus.olb/lib, [-.-.test]libh5test.olb/lib, - - [-.-.src]hdf5.olb/lib + [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $ type sys$input Done $ exit |