diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-07-17 21:00:32 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-07-17 21:00:32 (GMT) |
commit | 458621172b4744271f42403ea58b7f08526c5aa4 (patch) | |
tree | 8afda64248797adc08abd7895083f41fda2799fd /configure | |
parent | 3027c02d0b834b0ce1511725c6c3e1adf5c95b8d (diff) | |
download | hdf5-458621172b4744271f42403ea58b7f08526c5aa4.zip hdf5-458621172b4744271f42403ea58b7f08526c5aa4.tar.gz hdf5-458621172b4744271f42403ea58b7f08526c5aa4.tar.bz2 |
[svn-r4230]
Purpose:
Bug Fix
Description:
The HP-UX 11 platform needs the NSL library.
Solution:
Check for the HPUX 11 platform and then do the check for the NSL
library.
Platforms tested:
Kelgia
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1889,7 +1889,7 @@ else fi -if test `uname` = "SunOS"; then +if test "`uname`" = "SunOS" -o "`uname -sr`" = "HP-UX B.11.00"; then echo $ac_n "checking for xdr_int in -lnsl""... $ac_c" 1>&6 echo "configure:1895: checking for xdr_int in -lnsl" >&5 ac_lib_var=`echo nsl'_'xdr_int | sed 'y%./+-%__p_%'` |