check for netinet/tcp.h precense before actually including it

This commit is contained in:
Daniel Stenberg 2004-03-26 07:10:15 +00:00
Родитель db6dc49b0b
Коммит 43137cf595
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -1001,6 +1001,7 @@ AC_CHECK_HEADERS(
arpa/inet.h \
net/if.h \
netinet/in.h \
netinet/tcp.h \
netdb.h \
sys/sockio.h \
sys/stat.h \

Просмотреть файл

@ -31,6 +31,8 @@
#endif
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_NETINET_TCP_H
#include <netinet/tcp.h> /* for TCP_NODELAY */
#endif
#include <sys/ioctl.h>