summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2010-09-21 18:36:46 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2010-09-21 18:36:46 (GMT)
commitc83fe1b4ecdf8f43421b7bd003166cc2c931399a (patch)
tree09e77bf0e49c6afa1422ddcc38d451e08ef17ed1 /test
parentf8e2dfd298b4121b102d984849fa3be7b059707b (diff)
downloadhdf5-c83fe1b4ecdf8f43421b7bd003166cc2c931399a.zip
hdf5-c83fe1b4ecdf8f43421b7bd003166cc2c931399a.tar.gz
hdf5-c83fe1b4ecdf8f43421b7bd003166cc2c931399a.tar.bz2
[svn-r19462] Bug fix: 1961-- AIX 6.1 --enable-share did not work.
Description: The AIX platform does not install the lib*.so for some reason but libhdf5.a acts like a shared library. Until we can find out how to fix this, patch up tetlibinfo.sh to not look for an lib*.so in AIX. (Note the test results look wierd as it says libhdf5.a passed and skipped.) Tested: NCSA BP for both enable and disable-shared.
Diffstat (limited to 'test')
-rw-r--r--test/testlibinfo.sh.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/testlibinfo.sh.in b/test/testlibinfo.sh.in
index 97fb59d..5bcd300 100644
--- a/test/testlibinfo.sh.in
+++ b/test/testlibinfo.sh.in
@@ -84,6 +84,11 @@ case `uname -s` in
shlibsuffix=.dylib
break
;;
+ AIX) # AIX .a is already a shared lib
+ # this is a temporary patch.
+ shlibsuffix=.a
+ break
+ ;;
*) # default
shlibsuffix=.so
break