[Glibc-bsd-commits] r3959 - in trunk/freebsd-libs/debian: . local/include/netinet

Robert Millan rmh at alioth.debian.org
Sat Jan 7 13:24:32 UTC 2012


Author: rmh
Date: 2012-01-07 13:24:31 +0000 (Sat, 07 Jan 2012)
New Revision: 3959

Added:
   trunk/freebsd-libs/debian/local/include/netinet/ip.h
Modified:
   trunk/freebsd-libs/debian/changelog
   trunk/freebsd-libs/debian/local/include/netinet/tcp.h
   trunk/freebsd-libs/debian/local/include/netinet/udp.h
Log:
Fix undefined reference to ip_next. Thanks Christoph Egger. (Closes: #654581)

Modified: trunk/freebsd-libs/debian/changelog
===================================================================
--- trunk/freebsd-libs/debian/changelog	2012-01-07 12:20:33 UTC (rev 3958)
+++ trunk/freebsd-libs/debian/changelog	2012-01-07 13:24:31 UTC (rev 3959)
@@ -1,8 +1,10 @@
 freebsd-libs (8.2+ds2-2) UNRELEASED; urgency=low
 
   * Build-depend on libncurses5-dev (for libalias).
+  * Fix undefined reference to ip_next. Thanks Christoph Egger.
+    (Closes: #654581)
 
- -- Robert Millan <rmh at debian.org>  Sat, 07 Jan 2012 13:20:25 +0100
+ -- Robert Millan <rmh at debian.org>  Sat, 07 Jan 2012 14:24:10 +0100
 
 freebsd-libs (8.2+ds2-1) unstable; urgency=low
 

Added: trunk/freebsd-libs/debian/local/include/netinet/ip.h
===================================================================
--- trunk/freebsd-libs/debian/local/include/netinet/ip.h	                        (rev 0)
+++ trunk/freebsd-libs/debian/local/include/netinet/ip.h	2012-01-07 13:24:31 UTC (rev 3959)
@@ -0,0 +1,7 @@
+/* BSD-style include guards (used by e.g. alias_local.h) */
+#ifndef _NETINET_IP_H_
+#define _NETINET_IP_H_
+
+#include_next <netinet/ip.h>
+
+#endif

Modified: trunk/freebsd-libs/debian/local/include/netinet/tcp.h
===================================================================
--- trunk/freebsd-libs/debian/local/include/netinet/tcp.h	2012-01-07 12:20:33 UTC (rev 3958)
+++ trunk/freebsd-libs/debian/local/include/netinet/tcp.h	2012-01-07 13:24:31 UTC (rev 3959)
@@ -1,3 +1,7 @@
+/* BSD-style include guards (used by e.g. alias_local.h) */
+#ifndef _NETINET_TCP_H_
+#define _NETINET_TCP_H_
+
 #include <features.h>
 #if __FAVOR_BSD
 #  include_next <netinet/tcp.h>
@@ -6,3 +10,5 @@
 #  include_next <netinet/tcp.h>
 #  undef __FAVOR_BSD
 #endif
+
+#endif

Modified: trunk/freebsd-libs/debian/local/include/netinet/udp.h
===================================================================
--- trunk/freebsd-libs/debian/local/include/netinet/udp.h	2012-01-07 12:20:33 UTC (rev 3958)
+++ trunk/freebsd-libs/debian/local/include/netinet/udp.h	2012-01-07 13:24:31 UTC (rev 3959)
@@ -1,3 +1,7 @@
+/* BSD-style include guards (used by e.g. alias_local.h) */
+#ifndef _NETINET_UDP_H_
+#define _NETINET_UDP_H_
+
 #include <features.h>
 #if __FAVOR_BSD
 #  include_next <netinet/udp.h>
@@ -6,3 +10,5 @@
 #  include_next <netinet/udp.h>
 #  undef __FAVOR_BSD
 #endif
+
+#endif




More information about the Glibc-bsd-commits mailing list