summaryrefslogtreecommitdiffstats
path: root/src/libhdf5.settings.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2008-05-19 02:25:13 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2008-05-19 02:25:13 (GMT)
commitfeab08a0eeb4ac38c38b12fc0f43a15540d22cee (patch)
treeac1b666a2519c5c70041f26ec1b53268dbd0712b /src/libhdf5.settings.in
parentf0b8da5851403d97baa7e0791e9f28e7a294b91e (diff)
downloadhdf5-feab08a0eeb4ac38c38b12fc0f43a15540d22cee.zip
hdf5-feab08a0eeb4ac38c38b12fc0f43a15540d22cee.tar.gz
hdf5-feab08a0eeb4ac38c38b12fc0f43a15540d22cee.tar.bz2
[svn-r15033] Purpose:
Improvement. Description: src/libhdf5.settings was the initial configure summary and is installed. Then configure is changed to dump a summary of the configure settings to the output and also append it to src/libhdf5.settings. That created two different output formats and duplicated information. This is the initial attempt to clean up this confusion and unify the output format. It is decided to use the src/libhdf5.settings template as the unified means. This requires more macros symbols be defined. The following symbols are all related to generating the src/libhdf5.settings file. AC_SUBST(EXTERNAL_FILTERS) AC_SUBST(MPE) MPE=no AC_SUBST(STATIC_EXEC) STATIC_EXEC=no AC_SUBST(HDF_FORTRAN) HDF_FORTRAN=no AC_SUBST(FC) HDF_FORTRAN=no AC_SUBST(HDF_CXX) HDF_CXX=no AC_SUBST(CXX) HDF_CXX=no AC_SUBST(HDF5_HL) HDF5_HL=yes AC_SUBST(GPFS) GPFS=no AC_SUBST(LINUX_LFS) LINUX_LFS=no AC_SUBST(INSTRUMENT) INSTRUMENT=no AC_SUBST(CODESTACK) CODESTACK=no AC_SUBST(HAVE_DMALLOC) HAVE_DMALLOC=no AC_SUBST(DIRECT_VFD) DIRECT_VFD=no AC_SUBST(THREADSAFE) THREADSAFE=no AC_SUBST(STATIC_SHARED) AC_SUBST(enable_shared) AC_SUBST(enable_static) AC_SUBST(UNAME_INFO) UNAME_INFO=`uname -a` The src/libhdf5.settings.in has CONDITIONAL's added to it too. The untrue conditions turned into a "#" and these lines are cleaned by the post processing script. Platform tested: h5committest on kagiso, smirom and linew. (smirom had failures not due to my changes.)
Diffstat (limited to 'src/libhdf5.settings.in')
-rw-r--r--src/libhdf5.settings.in80
1 files changed, 62 insertions, 18 deletions
diff --git a/src/libhdf5.settings.in b/src/libhdf5.settings.in
index 0a54c4e..380d26b 100644
--- a/src/libhdf5.settings.in
+++ b/src/libhdf5.settings.in
@@ -1,19 +1,63 @@
-SUMMARY OF THE HDF5 CONFIGURATION
-=================================
+ SUMMARY OF THE HDF5 CONFIGURATION
+ =================================
-HDF5 Version: @H5_VERSION@
-Configured on: @CONFIG_DATE@
-Configured by: @CONFIG_USER@
-Configure mode: @CONFIG_MODE@
-Host system: @host_cpu@-@host_vendor@-@host_os@
-Byte sex: @BYTESEX@
-Libraries: @STATIC_SHARED@
-Parallel support: @PARALLEL@
-Installation point: @prefix@
-Compiler: @CC_VERSION@
-Compiler switches: @CFLAGS@ @CPPFLAGS@
-Extra libraries: @LDFLAGS@ @LIBS@
-Archiver: @AR@
-Ranlib: @RANLIB@
-Debugged Packages: @DEBUG_PKG@
-API Tracing: @TRACE_API@
+General Information:
+-------------------
+ HDF5 Version: @H5_VERSION@
+ Configured on: @CONFIG_DATE@
+ Configured by: @CONFIG_USER@
+ Configure mode: @CONFIG_MODE@
+ Host system: @host_cpu@-@host_vendor@-@host_os@
+ Uname information: @UNAME_INFO@
+ Byte sex: @BYTESEX@
+ Libraries: @STATIC_SHARED@
+ Parallel support: @PARALLEL@
+ Installation point: @prefix@
+ Compiler: @CC_VERSION@
+ Compiler switches: @CFLAGS@ @CPPFLAGS@
+ Extra libraries: @LDFLAGS@ @LIBS@
+ Archiver: @AR@
+ Ranlib: @RANLIB@
+ Debugged Packages: @DEBUG_PKG@
+ API Tracing: @TRACE_API@
+
+Compiling Options:
+------------------
+ Compilation Mode: @CONFIG_MODE@
+ C Compiler: @CC_VERSION@
+ CFLAGS/H5_CFLAGS: @CFLAGS@/@H5_CFLAGS@
+ CPPFLAGS/H5_CPPFLAGS: @CPPFLAGS@/@H5_CPPFLAGS@
+ LDFLAGS: @LDFLAGS@
+ Debug Mode: @DEBUG_PKG@
+ Shared Libraries: @enable_shared@
+ Static Libraries: @enable_static@
+ Statically Linked Executables: @STATIC_EXEC@
+ Default Public Symbols Version: @DEFAULT_API_VERSION@
+ With Deprecated Public Symbols: @DEPRECATED_SYMBOLS@
+ Tracing: @TRACE_API@
+Clear file buffers before write: @CLEARFILEBUF@
+ Using memory checker: @USINGMEMCHECKER@
+ Optimization Instrumentation: @INSTRUMENT@
+
+Languages:
+----------
+ Fortran: @HDF_FORTRAN@
+@BUILD_FORTRAN_CONDITIONAL_TRUE@ Fortran Compiler: @FC@@FCFLAGS@
+ C++: @HDF_CXX@
+@BUILD_CXX_CONDITIONAL_TRUE@ C++ Compiler: @CXX@@CXXFLAGS@
+
+Features:
+---------
+ dmalloc: @HAVE_DMALLOC@
+ Function Stack Tracing: @CODESTACK@
+ GPFS: @GPFS@
+ Strict File Format Checks: @STRICT_FORMAT_CHECKS@
+ Default API Mapping: @DEFAULT_API_VERSION@
+ I/O filters (external): @EXTERNAL_FILTERS@
+ I/O filters (internal): @FILTERS@
+ Linux Large File Support (LFS): @LINUX_LFS@
+ MPE: @MPE@
+ Parallel HDF5: @PARALLEL@
+ Direct VFD: @DIRECT_VFD@
+ Threadsafety: @THREADSAFE@
+ High Level library: @HDF5_HL@