diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2000-12-19 19:05:35 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2000-12-19 19:05:35 (GMT) |
commit | ae97d70661b18d58042baae731b63554ac5e12f2 (patch) | |
tree | cd865068e8dd076e15a699301bd27d026ffb78c0 /configure.in | |
parent | 304a0efa6908ec0cd58d6d7227cddabdb6b5b27f (diff) | |
download | hdf5-ae97d70661b18d58042baae731b63554ac5e12f2.zip hdf5-ae97d70661b18d58042baae731b63554ac5e12f2.tar.gz hdf5-ae97d70661b18d58042baae731b63554ac5e12f2.tar.bz2 |
[svn-r3160] Purpose:
Bug fix
Description:
The last modification put an extra comma in the AC_CHECK_HEADERS
that would generate an bad configure file.
Solution:
Removed the comma.
Platforms tested:
Ran autoconf and verified it by comparing the same with
the current working configure file which has been tested.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index fd2b87a..dd82b83 100644 --- a/configure.in +++ b/configure.in @@ -906,7 +906,7 @@ AC_ARG_ENABLE(stream-vfd, if test "X$STREAM_VFD" = "Xyes"; then AC_MSG_RESULT(yes) - AC_CHECK_HEADERS(netinet/tcp.h, sys/filio.h) + AC_CHECK_HEADERS(netinet/tcp.h sys/filio.h) AC_DEFINE(HAVE_STREAM) dnl Check if 'socklen_t' available |