diff options
| author | Alexander Barton <alex@barton.de> | 2010-04-23 11:04:15 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2010-04-23 11:04:15 +0200 |
| commit | b042363e88a6d89790a9cc5061bdff78108c6909 (patch) | |
| tree | a9286c43a980e4a7bfde61597bc2ea7d96ac1ac6 | |
| parent | 6b0bb665c3cb31ba93fb5ac8197f033532614fd4 (diff) | |
| download | ngircd-b042363e88a6d89790a9cc5061bdff78108c6909.tar.gz ngircd-b042363e88a6d89790a9cc5061bdff78108c6909.zip | |
Only include <netinet/in_systm.h> if it exists
| -rw-r--r-- | src/ngircd/conn.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 0ff6067f..853ffe8b 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -37,7 +37,9 @@ #include <netinet/in.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> #endif |