diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2010-09-22 22:53:43 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2010-09-22 22:53:43 (GMT) |
commit | 7cca32835077db02d4bffa625adb7812a275d33f (patch) | |
tree | d83127d90d8d1c1c7fb057635b4de938c4e2d373 | |
parent | 3237a4ca2bb8f21ab0b88ddd607f7a287f8bebf1 (diff) | |
download | hdf5-7cca32835077db02d4bffa625adb7812a275d33f.zip hdf5-7cca32835077db02d4bffa625adb7812a275d33f.tar.gz hdf5-7cca32835077db02d4bffa625adb7812a275d33f.tar.bz2 |
[svn-r19471] 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.
-rw-r--r-- | test/testlibinfo.sh.in | 5 |
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 |