summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2010-03-30 18:54:15 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2010-03-30 18:54:15 (GMT)
commit5d1838beab77a93f29ac0278ed43f9d1aec505b7 (patch)
tree76fcb069e95a83a4956ce2be399f4dd9fe7627c1 /src/H5.c
parentc49b97ff38ed25d5bb85225dc16059b0a8a5b774 (diff)
downloadhdf5-5d1838beab77a93f29ac0278ed43f9d1aec505b7.zip
hdf5-5d1838beab77a93f29ac0278ed43f9d1aec505b7.tar.gz
hdf5-5d1838beab77a93f29ac0278ed43f9d1aec505b7.tar.bz2
[svn-r18469] bug fix:
recent changes to the embedded library generation code does not quite work for the AIX system. The strings command of AIX does not display the embedded library information be default. Solution: Changed the H5libhhdf5_setting[] to be an extern variable. Also removed the const qualifier so that strings can see the variable data. Tested: Blue-print (with embedded-libinfo enabled and disabled). Also tested in Jam.
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5.c b/src/H5.c
index ed19b50..9666f7e 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -22,7 +22,6 @@
/* Headers */
/***********/
#include "H5private.h" /* Generic Functions */
-#include "H5lib_settings.h" /* Library build setings */
#include "H5ACprivate.h" /* Metadata cache */
#include "H5Dprivate.h" /* Datasets */
#include "H5Eprivate.h" /* Error handling */
@@ -57,6 +56,7 @@ static void H5_debug_mask(const char*);
/*********************/
/* Package Variables */
/*********************/
+#include "H5lib_settings.c" /* Embedded library information */
/*****************************/