]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
[Bug 752] QoS: On some systems, netinet/ip.h needs netinet/ip_systm.h
authorHarlan Stenn <stenn@ntp.org>
Fri, 26 Oct 2007 04:30:22 +0000 (00:30 -0400)
committerHarlan Stenn <stenn@ntp.org>
Fri, 26 Oct 2007 04:30:22 +0000 (00:30 -0400)
bk: 47216d5ebbawQN4fwn8J8KNKBO6Cog

ChangeLog
include/ntp_io.h

index 147fd787355eba57967421cd8d2c53dbae6f7848..e200f0897d1c2c5d1ad5fb95311860ac18cd70ea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,4 @@
+* [Bug 752] QoS: On some systems, netinet/ip.h needs netinet/ip_systm.h.
 * [Bug 752] Update the QoS tagging (code only - configuration to follow).
 * Orphan mode and other protocol cleanup from Dave Mills.
 * Documentation cleanup from Dave Mills.
index 39ae1466502c74fa6ee8ece1ef0dd6a3879dd0ee..297adae29b18d7b932042bb8b4fa4ee65af7e4c4 100644 (file)
@@ -35,6 +35,9 @@
 
 #if HAVE_NETINET_IN_H && HAVE_NETINET_IP_H
 #include <netinet/in.h>
+# if HAVE_NETINET_IN_SYSTM_H
+#  include <netinet/in_systm.h>
+# endif
 #include <netinet/ip.h>
 #endif