diff options
author | Thomas Radke <tradke@aei.mpg.de> | 2000-11-08 20:05:36 (GMT) |
---|---|---|
committer | Thomas Radke <tradke@aei.mpg.de> | 2000-11-08 20:05:36 (GMT) |
commit | b7170a25ceb924da4ccf2a589e84680d92526a17 (patch) | |
tree | 52eaed0ddced7b757083b74262a3504f5bf0b567 /src/H5config.h.in | |
parent | 36456dcccfec8f64fad1f6b3450e8d03973b5b19 (diff) | |
download | hdf5-b7170a25ceb924da4ccf2a589e84680d92526a17.zip hdf5-b7170a25ceb924da4ccf2a589e84680d92526a17.tar.gz hdf5-b7170a25ceb924da4ccf2a589e84680d92526a17.tar.bz2 |
[svn-r2816]
Purpose:
Bugfix
Description:
Added defines for HAVE_SYS_TYPES_H, HAVE_SYS_SOCKET_H, and HAVE_STRUCT_SOCKLENT_T.
Platforms tested:
Solaris 2.6 and 2.7
IRIX64
Linux
Windows NT (command line configure with gcc and cl)
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r-- | src/H5config.h.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index aeef052..83d7a08 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -89,9 +89,12 @@ /* Define if the stream virtual file driver should be compiled */ #undef HAVE_STREAM -/* Define if you have the <netinet/tcp.h> header file. */ +/* Define if <netinet/tcp.h> header file is available */ #undef HAVE_NETINET_TCP_H +/* Define if struct socklen_t is known */ +#undef HAVE_STRUCT_SOCKLEN_T + /* The number of bytes in a __int64. */ #undef SIZEOF___INT64 @@ -305,6 +308,9 @@ /* Define if you have the <sys/resource.h> header file. */ #undef HAVE_SYS_RESOURCE_H +/* Define if you have the <sys/socket.h> header file. */ +#undef HAVE_SYS_SOCKET_H + /* Define if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H @@ -317,6 +323,9 @@ /* Define if you have the <sys/timeb.h> header file. */ #undef HAVE_SYS_TIMEB_H +/* Define if you have the <sys/types.h> header file. */ +#undef HAVE_SYS_TYPES_H + /* Define if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H |