[Glibc-bsd-commits] r4875 - in trunk/freebsd-glue: debian include/sys

Robert Millan rmh at alioth.debian.org
Tue Aug 6 15:23:38 UTC 2013


Author: rmh
Date: 2013-08-06 15:23:38 +0000 (Tue, 06 Aug 2013)
New Revision: 4875

Added:
   trunk/freebsd-glue/include/sys/_stdint.h
Modified:
   trunk/freebsd-glue/debian/changelog
Log:
Add <sys/_stdint.h> to fix buildability of <libutil.h>.

Modified: trunk/freebsd-glue/debian/changelog
===================================================================
--- trunk/freebsd-glue/debian/changelog	2013-08-06 12:13:47 UTC (rev 4874)
+++ trunk/freebsd-glue/debian/changelog	2013-08-06 15:23:38 UTC (rev 4875)
@@ -1,3 +1,9 @@
+freebsd-glue (0.1.2) unstable; urgency=low
+
+  * Add <sys/_stdint.h> to fix buildability of <libutil.h>.
+
+ -- Robert Millan <rmh at debian.org>  Tue, 06 Aug 2013 17:22:40 +0200
+
 freebsd-glue (0.1.1) unstable; urgency=low
 
   * Put includes of <sys/kern/*.h> OUTSIDE the header protection (which

Added: trunk/freebsd-glue/include/sys/_stdint.h
===================================================================
--- trunk/freebsd-glue/include/sys/_stdint.h	                        (rev 0)
+++ trunk/freebsd-glue/include/sys/_stdint.h	2013-08-06 15:23:38 UTC (rev 4875)
@@ -0,0 +1,14 @@
+#ifdef __FreeBSD_kernel__
+
+#include_next <sys/_stdint.h>
+
+#else
+
+#ifndef _SYS__STDINT_H_
+#define _SYS__STDINT_H_
+
+#include <stdint.h>
+
+#endif /* !_SYS__STDINT_H_ */
+
+#endif /* __FreeBSD_kernel__ */




More information about the Glibc-bsd-commits mailing list