summaryrefslogtreecommitdiff
path: root/devel/xxgdb/files/patch-ai
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-09-07 20:38:01 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-09-07 20:38:01 +0000
commitf2f88a531e6a36db654d00e217bee2861664f5bd (patch)
tree126499829722cddc4ecb286bbe308470b33b4df3 /devel/xxgdb/files/patch-ai
parent* Upgrade to 0.10.16. (diff)
Fix build on -current (union wait removal).
Submitted by: kan
Diffstat (limited to '')
-rw-r--r--devel/xxgdb/files/patch-ai20
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/xxgdb/files/patch-ai b/devel/xxgdb/files/patch-ai
new file mode 100644
index 000000000000..22c65ef1a289
--- /dev/null
+++ b/devel/xxgdb/files/patch-ai
@@ -0,0 +1,20 @@
+--- signals.c.orig Fri Sep 6 22:52:25 2002
++++ signals.c Fri Sep 6 22:52:56 2002
+@@ -93,7 +93,7 @@
+ static void quit_handler(int sig)
+ {
+ int pid;
+-#ifdef SYSV
++#if defined(SYSV) || defined(__FreeBSD__)
+ int status;
+ #else
+ union wait status;
+@@ -102,7 +102,7 @@
+ /* wait for the child to report its status; if the child has died,
+ * exit gracefully.
+ */
+-#ifdef SYSV
++#if defined(SYSV) || defined(__FreeBSD__)
+ #if 1 /* instead of ifdef SVR4 */
+ pid = waitpid((pid_t)0, &status, WNOHANG|WUNTRACED); /* (MJH) */
+ #else