diff options
author | kris <kris@FreeBSD.org> | 2002-10-26 09:16:02 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-10-26 09:16:02 +0800 |
commit | 58d04e22d070216ca0a0a03a6eef459c9ac27e5d (patch) | |
tree | 23fe03d0454f7466fb7b03f0cc8650f808145349 /japanese/tcl76 | |
parent | 185cb76fc3af34cde7ae1ed49bba888d5bc0eeb2 (diff) | |
download | freebsd-ports-gnome-58d04e22d070216ca0a0a03a6eef459c9ac27e5d.tar.gz freebsd-ports-gnome-58d04e22d070216ca0a0a03a6eef459c9ac27e5d.tar.zst freebsd-ports-gnome-58d04e22d070216ca0a0a03a6eef459c9ac27e5d.zip |
Fix build on -current (cope with removal of union wait)
Submitted by: mike
Diffstat (limited to 'japanese/tcl76')
-rw-r--r-- | japanese/tcl76/files/patch-tclUnixPort.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/japanese/tcl76/files/patch-tclUnixPort.h b/japanese/tcl76/files/patch-tclUnixPort.h new file mode 100644 index 000000000000..7d590f654ee6 --- /dev/null +++ b/japanese/tcl76/files/patch-tclUnixPort.h @@ -0,0 +1,12 @@ +--- tclUnixPort.h.orig Fri Oct 25 10:45:48 2002 ++++ tclUnixPort.h Fri Oct 25 10:45:15 2002 +@@ -146,6 +146,9 @@ + * The type of the status returned by wait varies from UNIX system + * to UNIX system. The macro below defines it: + */ ++#ifdef __FreeBSD__ ++# define NO_UNION_WAIT ++#endif + + #ifdef _AIX + # define WAIT_STATUS_TYPE pid_t |