diff options
author | Thomas Radke <tradke@aei.mpg.de> | 2000-11-08 22:33:24 (GMT) |
---|---|---|
committer | Thomas Radke <tradke@aei.mpg.de> | 2000-11-08 22:33:24 (GMT) |
commit | ae1a3c13002aeaf84bae8bdebc1215a2a67d34c7 (patch) | |
tree | 3d08e62ae7f1499836f696b5b4231c541db86d61 /configure | |
parent | 50333fe5150928e755a33933810e46c1bb1966da (diff) | |
download | hdf5-ae1a3c13002aeaf84bae8bdebc1215a2a67d34c7.zip hdf5-ae1a3c13002aeaf84bae8bdebc1215a2a67d34c7.tar.gz hdf5-ae1a3c13002aeaf84bae8bdebc1215a2a67d34c7.tar.bz2 |
[svn-r2830]
Purpose:
Bugfix
Description:
Rename the [H5_]HAVE_STRUCT_SOCKLEN_T into [H5_]HAVE_SOCKLEN_T.
Solution:
As pointed out by Bill the socklen_t type isn't a structure if
is it defined by the system headers.
So we should better take out the _STRUCT_ from the defines.
Platforms tested:
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7492,8 +7492,8 @@ done EOF - echo $ac_n "checking if struct socklen_t is defined""... $ac_c" 1>&6 -echo "configure:7497: checking if struct socklen_t is defined" >&5 + echo $ac_n "checking if socklen_t is defined""... $ac_c" 1>&6 +echo "configure:7497: checking if socklen_t is defined" >&5 cat > conftest.$ac_ext <<EOF #line 7499 "configure" #include "confdefs.h" @@ -7517,7 +7517,7 @@ EOF if { (eval echo configure:7518: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cat >> confdefs.h <<\EOF -#define HAVE_STRUCT_SOCKLEN_T 1 +#define HAVE_SOCKLEN_T 1 EOF echo "$ac_t""yes" 1>&6 else |