[Glibc-bsd-commits] r4044 - in trunk: freebsd-buildutils/debian freebsd-buildutils/debian/local/include/sys glibc-ports/kfreebsd/sys

Robert Millan rmh at alioth.debian.org
Tue Jan 31 18:53:52 UTC 2012


Author: rmh
Date: 2012-01-31 18:53:51 +0000 (Tue, 31 Jan 2012)
New Revision: 4044

Added:
   trunk/freebsd-buildutils/debian/local/include/sys/param.h
Modified:
   trunk/freebsd-buildutils/debian/changelog
   trunk/glibc-ports/kfreebsd/sys/param.h
Log:
FreeBSD code expects that <sys/param.h> implicitly defines SIG* macros.

Modified: trunk/freebsd-buildutils/debian/changelog
===================================================================
--- trunk/freebsd-buildutils/debian/changelog	2012-01-31 10:25:31 UTC (rev 4043)
+++ trunk/freebsd-buildutils/debian/changelog	2012-01-31 18:53:51 UTC (rev 4044)
@@ -1,3 +1,10 @@
+freebsd-buildutils (9.0-4) UNRELEASED; urgency=low
+
+  * FreeBSD code expects that <sys/param.h> implicitly defines SIG*
+    macros.
+
+ -- Robert Millan <rmh at debian.org>  Sun, 29 Jan 2012 15:33:04 +0100
+
 freebsd-buildutils (9.0-3) unstable; urgency=low
 
   * Replace 10_non_kfreebsd.diff with equivalent patch from upstream

Added: trunk/freebsd-buildutils/debian/local/include/sys/param.h
===================================================================
--- trunk/freebsd-buildutils/debian/local/include/sys/param.h	                        (rev 0)
+++ trunk/freebsd-buildutils/debian/local/include/sys/param.h	2012-01-31 18:53:51 UTC (rev 4044)
@@ -0,0 +1,9 @@
+#include_next <sys/param.h>
+
+#ifndef _SYS_PARAM_H_
+#define _SYS_PARAM_H_
+
+/* FreeBSD code expects that this file implicitly defines SIG* macros.  */
+#include <signal.h>
+
+#endif

Modified: trunk/glibc-ports/kfreebsd/sys/param.h
===================================================================
--- trunk/glibc-ports/kfreebsd/sys/param.h	2012-01-31 10:25:31 UTC (rev 4043)
+++ trunk/glibc-ports/kfreebsd/sys/param.h	2012-01-31 18:53:51 UTC (rev 4044)
@@ -42,6 +42,9 @@
 #include <sys/types.h>
 #include <stdint.h>
 
+/* FreeBSD code expects that this file implicitly defines SIG* macros.  */
+#include <signal.h>
+
 /*
  * Machine-independent constants (some used in following include files).
  * Redefined constants are from POSIX 1003.1 limits file.




More information about the Glibc-bsd-commits mailing list