diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-10-10 20:38:42 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-10-10 20:38:42 (GMT) |
commit | b101eca9f1b7b28020d3b31c74efecfa34fb8324 (patch) | |
tree | f3adac7f081a9f803958b405a49fa08247a113be /src | |
parent | cbf1ec6eb44d6e0fd1ff90879884dfb556d3c5c0 (diff) | |
download | hdf5-b101eca9f1b7b28020d3b31c74efecfa34fb8324.zip hdf5-b101eca9f1b7b28020d3b31c74efecfa34fb8324.tar.gz hdf5-b101eca9f1b7b28020d3b31c74efecfa34fb8324.tar.bz2 |
[svn-r11519] Purpose:
Bug fix
Description:
Some platforms complain that tcp.h is present but cannot be compiled.
Solution:
This is because tcp.h needs in.h to be included.
Checked for netinet/in.h and included it when netinet/tcp.h is being
checked.
Platforms tested:
mir, cu11
Diffstat (limited to 'src')
-rw-r--r-- | src/H5config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index a02953c..56bab2f 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -199,6 +199,9 @@ /* Define if `MPI_Info_c2f' and `MPI_Info_f2c' exists */ #undef HAVE_MPI_MULTI_LANG_Info +/* Define to 1 if you have the <netinet/in.h> header file. */ +#undef HAVE_NETINET_IN_H + /* Define to 1 if you have the <netinet/tcp.h> header file. */ #undef HAVE_NETINET_TCP_H |