Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make Include signal.h early for MiNT and Linux. From...



details:   https://anonhg.NetBSD.org/src/rev/67c882c257f9
branches:  trunk
changeset: 791626:67c882c257f9
user:      joerg <joerg%NetBSD.org@localhost>
date:      Tue Nov 26 13:44:41 2013 +0000

description:
Include signal.h early for MiNT and Linux. From pkgsrc.

diffstat:

 usr.bin/make/util.c |  9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diffs (25 lines):

diff -r a99e074d46be -r 67c882c257f9 usr.bin/make/util.c
--- a/usr.bin/make/util.c       Tue Nov 26 09:46:24 2013 +0000
+++ b/usr.bin/make/util.c       Tue Nov 26 13:44:41 2013 +0000
@@ -1,15 +1,18 @@
-/*     $NetBSD: util.c,v 1.53 2012/06/04 22:45:05 sjg Exp $    */
+/*     $NetBSD: util.c,v 1.54 2013/11/26 13:44:41 joerg Exp $  */
 
 /*
  * Missing stuff from OS's
  */
+#if defined(__MINT__) || defined(__linux__)
+#include <signal.h>
+#endif
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: util.c,v 1.53 2012/06/04 22:45:05 sjg Exp $";
+static char rcsid[] = "$NetBSD: util.c,v 1.54 2013/11/26 13:44:41 joerg Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: util.c,v 1.53 2012/06/04 22:45:05 sjg Exp $");
+__RCSID("$NetBSD: util.c,v 1.54 2013/11/26 13:44:41 joerg Exp $");
 #endif
 #endif
 



Home | Main Index | Thread Index | Old Index