diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2007-06-07 21:42:40 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2007-06-07 21:42:40 (GMT) |
commit | 58c565aee7919f58de5f6de7a185c792e9e0a545 (patch) | |
tree | c86aeb9e846590e4fd73cc0f9381b9b052a27877 /c++ | |
parent | c80b7740130a31a3a9f91522988458393acc7288 (diff) | |
download | hdf5-58c565aee7919f58de5f6de7a185c792e9e0a545.zip hdf5-58c565aee7919f58de5f6de7a185c792e9e0a545.tar.gz hdf5-58c565aee7919f58de5f6de7a185c792e9e0a545.tar.bz2 |
[svn-r13839] Purpose: creation of a DEFAULT_VFD macro in the test/Makefile.
Description: a new configure flag has been created that will now set a macro
in the test/Makefile. The flag is with-default-vfd=. When set to
a virtual file driver (e.g. "--with-default-vfd=sec2"), the macro
DEFAULT_VFD will hold this value.
Tested: kagiso, smirom, linew
Diffstat (limited to 'c++')
-rw-r--r-- | c++/Makefile.in | 1 | ||||
-rw-r--r-- | c++/examples/Makefile.in | 1 | ||||
-rw-r--r-- | c++/src/Makefile.in | 1 | ||||
-rw-r--r-- | c++/test/Makefile.in | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in index 9a8cc71..7ce60f2 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -106,6 +106,7 @@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ @H5_CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEBUG_PKG = @DEBUG_PKG@ +DEFAULT_VFD_NAME = @DEFAULT_VFD_NAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DYNAMIC_DIRS = @DYNAMIC_DIRS@ diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index edf1ee6..fefd7e5 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -100,6 +100,7 @@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ @H5_CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEBUG_PKG = @DEBUG_PKG@ +DEFAULT_VFD_NAME = @DEFAULT_VFD_NAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DYNAMIC_DIRS = @DYNAMIC_DIRS@ diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in index b7392eb..de55a0f 100644 --- a/c++/src/Makefile.in +++ b/c++/src/Makefile.in @@ -136,6 +136,7 @@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ @H5_CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEBUG_PKG = @DEBUG_PKG@ +DEFAULT_VFD_NAME = @DEFAULT_VFD_NAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DYNAMIC_DIRS = @DYNAMIC_DIRS@ diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in index 1cfe7e6..dfcf744 100644 --- a/c++/test/Makefile.in +++ b/c++/test/Makefile.in @@ -122,6 +122,7 @@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ @H5_CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEBUG_PKG = @DEBUG_PKG@ +DEFAULT_VFD_NAME = @DEFAULT_VFD_NAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DYNAMIC_DIRS = @DYNAMIC_DIRS@ |