summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsalo <salo>2005-08-24 10:02:27 +0000
committersalo <salo>2005-08-24 10:02:27 +0000
commit0b15c35c5a5515ec4c7a3ff5fedbf60764e84df1 (patch)
tree71bbaf92965d131f99e6ced8a26eaaee2a9c08ab
parent87de7e85ce94498000ff3664421845ee3d11462d (diff)
downloadpkgsrc-0b15c35c5a5515ec4c7a3ff5fedbf60764e84df1.tar.gz
Pullup ticket 713 - requested by Grant Beattie
portability fix for bootstrap bmake Revisions pulled up: - pkgsrc/bootstrap/bmake/sigcompat.c 1.2 Module Name: pkgsrc Committed By: grant Date: Sun Aug 21 12:35:00 UTC 2005 Modified Files: pkgsrc/bootstrap/bmake: sigcompat.c Log Message: #include <string.h> for memcpy() on Solaris 10. from John Heasley in PR pkg/30544.
-rw-r--r--bootstrap/bmake/sigcompat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstrap/bmake/sigcompat.c b/bootstrap/bmake/sigcompat.c
index 4b44d07eef7..4aad983a65a 100644
--- a/bootstrap/bmake/sigcompat.c
+++ b/bootstrap/bmake/sigcompat.c
@@ -98,11 +98,12 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)sigcompat.c 5.3 (Berkeley) 2/24/91";*/
-static char *rcsid = "$Id: sigcompat.c,v 1.1.1.1 2004/03/11 13:04:12 grant Exp $";
+static char *rcsid = "$Id: sigcompat.c,v 1.1.1.1.12.1 2005/08/24 10:02:27 salo Exp $";
#endif /* LIBC_SCCS and not lint */
#undef signal
#include <stdio.h>
+#include <string.h>
#include <sys/param.h>
#include <sys/cdefs.h>
#include "assert.h"