1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 04:46:17 +00:00

Only include <netinet/in_systm.h> if it exists

This commit is contained in:
Alexander Barton 2010-04-23 11:04:15 +02:00
parent 6b0bb665c3
commit b042363e88

View File

@ -37,7 +37,9 @@
#include <netinet/in.h> #include <netinet/in.h>
#ifdef HAVE_NETINET_IP_H #ifdef HAVE_NETINET_IP_H
# include <netinet/in_systm.h> # ifdef HAVE_NETINET_IN_SYSTM_H
# include <netinet/in_systm.h>
# endif
# include <netinet/ip.h> # include <netinet/ip.h>
#endif #endif