diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2010-09-22 22:52:55 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2010-09-22 22:52:55 (GMT) |
commit | 3237a4ca2bb8f21ab0b88ddd607f7a287f8bebf1 (patch) | |
tree | 150c3d3700a9c0f4bd906f3ef42edcc9c9c5fd1f /configure | |
parent | 43a4a5dcff7489611bd484b7e776190680ec830d (diff) | |
download | hdf5-3237a4ca2bb8f21ab0b88ddd607f7a287f8bebf1.zip hdf5-3237a4ca2bb8f21ab0b88ddd607f7a287f8bebf1.tar.gz hdf5-3237a4ca2bb8f21ab0b88ddd607f7a287f8bebf1.tar.bz2 |
[svn-r19470] 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')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in 19309 2010-08-26 17:16:50Z koziol . +# From configure.in Id: configure.in 19457 2010-09-21 16:46:38Z songyulu . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.67 for HDF5 1.9.75. # @@ -3859,6 +3859,9 @@ case $host_os in aix5.*) host_os_novers=aix5.x ;; + aix6.*) + host_os_novers=aix6.x + ;; freebsd*) host_os_novers=freebsd ;; |