aboutsummaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-10-26 01:16:02 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-10-26 01:16:02 +0000
commit24a46374181088f0b9a6413cada18e3999dcf7a7 (patch)
tree567bf617a7a32d0a78c5df125622beadede6a0b2 /x11
parent9c233bec4b5a6a2fd86931700f24d630f1187357 (diff)
downloadports-24a46374181088f0b9a6413cada18e3999dcf7a7.tar.gz
ports-24a46374181088f0b9a6413cada18e3999dcf7a7.zip
Notes
Diffstat (limited to 'x11')
-rw-r--r--x11/bricons/files/patch-action.c11
-rw-r--r--x11/xdtm/files/patch-appman.c20
2 files changed, 31 insertions, 0 deletions
diff --git a/x11/bricons/files/patch-action.c b/x11/bricons/files/patch-action.c
new file mode 100644
index 000000000000..c06c417a6d1c
--- /dev/null
+++ b/x11/bricons/files/patch-action.c
@@ -0,0 +1,11 @@
+--- action.c.orig Fri Oct 25 11:18:06 2002
++++ action.c Fri Oct 25 11:18:39 2002
+@@ -178,7 +178,7 @@
+ {
+ int pid;
+ int i = 0;
+- union wait status;
++ int status;
+
+
+ /*
diff --git a/x11/xdtm/files/patch-appman.c b/x11/xdtm/files/patch-appman.c
new file mode 100644
index 000000000000..69560c254b26
--- /dev/null
+++ b/x11/xdtm/files/patch-appman.c
@@ -0,0 +1,20 @@
+--- appman.c.orig Thu Mar 14 08:02:00 1996
++++ appman.c Fri Oct 25 11:12:39 2002
+@@ -1297,7 +1297,7 @@
+ #endif
+ FILE *processfp = NULL; /* file pointer to process */
+ String *newargs, args;
+-#if !defined(SYSV) && !defined(SVR4_0) && !defined(_POSIX_SOURCE) && !defined(__386BSD__)
++#if !defined(SYSV) && !defined(SVR4_0) && !defined(_POSIX_SOURCE) && !defined(__386BSD__) && !defined(__FreeBSD__)
+ union wait w_stat; /* I'm not sure about the SYSV bit... */
+ #else
+ int w_stat;
+@@ -1843,7 +1843,7 @@
+ extern String cwd;
+
+ int pid;
+-#if !defined(SYSV) && !defined(SVR4_0) && !defined(_POSIX_SOURCE)
++#if !defined(SYSV) && !defined(SVR4_0) && !defined(_POSIX_SOURCE) && !defined(__FreeBSD__)
+ union wait status;
+ #else
+ int status;