summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorThomas Radke <tradke@aei.mpg.de>2000-10-28 18:59:32 (GMT)
committerThomas Radke <tradke@aei.mpg.de>2000-10-28 18:59:32 (GMT)
commita79dc754b8d7ef103a908305e1494515b192ccdc (patch)
tree8439a6ab196e2f2d6d7d4132a23f0391b6eb9a19 /configure.in
parentf39c5d79852aaf2511849c5265e9ee3bc91d4fba (diff)
downloadhdf5-a79dc754b8d7ef103a908305e1494515b192ccdc.zip
hdf5-a79dc754b8d7ef103a908305e1494515b192ccdc.tar.gz
hdf5-a79dc754b8d7ef103a908305e1494515b192ccdc.tar.bz2
[svn-r2747]
Purpose: Detect whether the system has the netinet/tcp.h header file. Description: The Stream VFD uses setsockopt(2) to set TCP_NODELAY on an opened socket. This constant is defined normally in netinet/tcp.h except for GNU cc under Windows where this header doesn't exist. Platforms tested: Windows NT, GNU cc
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 970d80e..7a6733d 100644
--- a/configure.in
+++ b/configure.in
@@ -798,6 +798,7 @@ AC_ARG_WITH(Stream-VFD,
case "$withval" in
yes)
AC_MSG_RESULT(yes)
+ AC_CHECK_HEADERS(netinet/tcp.h)
AC_DEFINE(HAVE_STREAM)
;;
*)