diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-13 02:42:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-07-13 02:42:17 (GMT) |
commit | b566d21649d3286ace6aed1eaf73d5e3ade24f6a (patch) | |
tree | 7396a7690cfcccb4f96e91034e505ca978230555 /src | |
parent | b4e029c70b5d23cde5b58d23bf244eac3b1b9077 (diff) | |
download | hdf5-b566d21649d3286ace6aed1eaf73d5e3ade24f6a.zip hdf5-b566d21649d3286ace6aed1eaf73d5e3ade24f6a.tar.gz hdf5-b566d21649d3286ace6aed1eaf73d5e3ade24f6a.tar.bz2 |
[svn-r13972] Description:
Add --with-default-api-version configure flag.
Tested on:
Mac OS X/32 10.4.10 (amazon)
FreeBSD/32 6.2 (duty)
Linux/32 2.6 (kagiso)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5config.h.in | 3 | ||||
-rw-r--r-- | src/Makefile.in | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index 06e1972..8039303 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -604,6 +604,9 @@ floating-point values. */ #undef ULONG_TO_FP_BOTTOM_BIT_ACCURATE +/* Define using v1.6 public API symbols by default */ +#undef USE_16_API + /* Define if a memory checking tool will be used on the library, to cause library to be very picky about memory operations and also disable the internal free list manager code. */ diff --git a/src/Makefile.in b/src/Makefile.in index 5f8d79a..1f82a69 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -181,6 +181,7 @@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ @H5_CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEBUG_PKG = @DEBUG_PKG@ +DEFAULT_API_VERSION = @DEFAULT_API_VERSION@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DEPRECATED_SYMBOLS = @DEPRECATED_SYMBOLS@ |