summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2010-09-20 05:18:29 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2010-09-20 05:18:29 (GMT)
commit88abe7432bc45180ae746c11e3a552045a4b7a24 (patch)
treecebd947398bfaeb0c96ebed60d69ddb43eb8c9c3 /configure.in
parent91565db20993a0bf73b3d32828bb87b8e7d6bf0c (diff)
downloadhdf5-88abe7432bc45180ae746c11e3a552045a4b7a24.zip
hdf5-88abe7432bc45180ae746c11e3a552045a4b7a24.tar.gz
hdf5-88abe7432bc45180ae746c11e3a552045a4b7a24.tar.bz2
[svn-r19423] Bug fix: 1961-- AIX 6.1 --enable-share did not work.
Description: In an AIX 6.1 system, configure --enable-shared could not build a shared HDF5 library. The problem was because the version of config.guess was too old to recongnize AIX 6.X and also configure.in had a local fix which did not recognize AIX 6.X. Solution: 1. Mike McGreevy updated bin/config.guess to handle AIX 6.X. 2 Albert fixed configure.in to recognize AIX 6.X. Note that though HDF5 can build shared lib for AIX 6.X systems but it still could not install the proper library as in AIX 5.X systems. Also, bin/config.sub should be updated too. Tested: BP which is the AIX 6.1 system that exposed this problem.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index a72fc15..80b0a31 100644
--- a/configure.in
+++ b/configure.in
@@ -254,6 +254,9 @@ case $host_os in
aix5.*)
host_os_novers=aix5.x
;;
+ aix6.*)
+ host_os_novers=aix6.x
+ ;;
freebsd*)
host_os_novers=freebsd
;;