From c83fe1b4ecdf8f43421b7bd003166cc2c931399a Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Tue, 21 Sep 2010 13:36:46 -0500 Subject: [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. --- test/testlibinfo.sh.in | 5 +++++ 1 file changed, 5 insertions(+) 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 -- cgit v0.12