summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2011-06-28 21:25:10 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2011-06-28 21:25:10 (GMT)
commitd93ae2622696b383189113d5a1a138f8b0fa8380 (patch)
tree2ee5a8958916c20681c25bf190416171eead1122 /src
parentd3a505abb7b4b90bbbcda3fcd3655141920861df (diff)
downloadhdf5-d93ae2622696b383189113d5a1a138f8b0fa8380.zip
hdf5-d93ae2622696b383189113d5a1a138f8b0fa8380.tar.gz
hdf5-d93ae2622696b383189113d5a1a138f8b0fa8380.tar.bz2
[svn-r21044] Purpose:
Fix HDFFV-7592 "Remove PACKEDBITS option from autotools files" Description: The code for h5dump's packed bits feature was conditionally compiled in via this option during its 'beta' release in 1.8.5. Now that the feature is fully supported, h5dump has since been changed to always compile the packed bits code (having removed the #ifdef H5_HAVE_H5DUMP_PACKED_BITS checks), so this option in configure is no longer needed. This commit removes the --enable-h5dump-packed-bits configure option, including the help summary from './configure --help' and the libhdf5.settings output summary, the PACKED_BITS Makefile variable, and the definition of H5_HAVE_H5DUMP_PACKED_BITS define in appropriate pubconf header files (which has already been removed from use in source code as of r20722). Note that this option was never added to the trunk, thus this commit only need occur on the 1.8 branch. Tested: - Configure output, help, & summary verified on jam - h5committested
Diffstat (limited to 'src')
-rw-r--r--src/H5config.h.in3
-rw-r--r--src/Makefile.in1
-rw-r--r--src/libhdf5.settings.in1
3 files changed, 0 insertions, 5 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in
index 01d808d..95a9675 100644
--- a/src/H5config.h.in
+++ b/src/H5config.h.in
@@ -172,9 +172,6 @@
/* Define to 1 if you have the <gpfs.h> header file. */
#undef HAVE_GPFS_H
-/* Define if h5dump packed bits feature is enabled */
-#undef HAVE_H5DUMP_PACKED_BITS
-
/* Define if library will contain instrumentation to detect correct
optimization operation */
#undef HAVE_INSTRUMENTED_LIBRARY
diff --git a/src/Makefile.in b/src/Makefile.in
index 536555c..1433b7c 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -326,7 +326,6 @@ PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
-PACKED_BITS = @PACKED_BITS@
PARALLEL = @PARALLEL@
PATH_SEPARATOR = @PATH_SEPARATOR@
PERL = @PERL@
diff --git a/src/libhdf5.settings.in b/src/libhdf5.settings.in
index 46d19a7..a873062 100644
--- a/src/libhdf5.settings.in
+++ b/src/libhdf5.settings.in
@@ -72,4 +72,3 @@ Clear file buffers before write: @CLEARFILEBUF@
Strict File Format Checks: @STRICT_FORMAT_CHECKS@
Optimization Instrumentation: @INSTRUMENT@
Large File Support (LFS): @LARGEFILE@
- H5dump Packed Bits: @PACKED_BITS@