summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2010-03-30 18:55:41 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2010-03-30 18:55:41 (GMT)
commite1282224cdd7c05ef3c278b4e46b85fb59b2bc72 (patch)
tree6f92746cc6e4567669c706880497a6a7338d3281 /src/H5.c
parentabdfc0f817f84303b88410a5f5608a6655e45b8d (diff)
downloadhdf5-e1282224cdd7c05ef3c278b4e46b85fb59b2bc72.zip
hdf5-e1282224cdd7c05ef3c278b4e46b85fb59b2bc72.tar.gz
hdf5-e1282224cdd7c05ef3c278b4e46b85fb59b2bc72.tar.bz2
[svn-r18470] 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).
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 e94b1b4..7586247 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 */
/*****************************/