diff options
author | kris <kris@FreeBSD.org> | 2002-10-26 09:12:30 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-10-26 09:12:30 +0800 |
commit | 185cb76fc3af34cde7ae1ed49bba888d5bc0eeb2 (patch) | |
tree | b9eddbbc303fa327f463ba302a50e2e607ed9e04 /japanese/sj3-server/files | |
parent | 1e51a789f268ee342f2068858642a16a8900760d (diff) | |
download | freebsd-ports-graphics-185cb76fc3af34cde7ae1ed49bba888d5bc0eeb2.tar.gz freebsd-ports-graphics-185cb76fc3af34cde7ae1ed49bba888d5bc0eeb2.tar.zst freebsd-ports-graphics-185cb76fc3af34cde7ae1ed49bba888d5bc0eeb2.zip |
Fix build on -current (cope with removal of union wait, and add
#include <sys/ioctl_compat.h>)
Submitted by: mike
Diffstat (limited to 'japanese/sj3-server/files')
-rw-r--r-- | japanese/sj3-server/files/patch-ag | 12 | ||||
-rw-r--r-- | japanese/sj3-server/files/patch-sj3.c | 29 |
2 files changed, 29 insertions, 12 deletions
diff --git a/japanese/sj3-server/files/patch-ag b/japanese/sj3-server/files/patch-ag index 36759dbda3f..e69de29bb2d 100644 --- a/japanese/sj3-server/files/patch-ag +++ b/japanese/sj3-server/files/patch-ag @@ -1,12 +0,0 @@ ---- sj3/sj3.c.orig Sun Feb 6 18:55:38 2000 -+++ sj3/sj3.c Sun Feb 6 18:58:44 2000 -@@ -46,6 +46,9 @@ - #define LACKOF_SETLOCALE - #endif - #endif -+#if defined(__FreeBSD__) -+#include <sys/ioctl_compat.h> -+#endif - #include <curses.h> - #endif - diff --git a/japanese/sj3-server/files/patch-sj3.c b/japanese/sj3-server/files/patch-sj3.c new file mode 100644 index 00000000000..7d404c64e61 --- /dev/null +++ b/japanese/sj3-server/files/patch-sj3.c @@ -0,0 +1,29 @@ +--- sj3/sj3.c.orig Wed Jan 14 00:52:48 1998 ++++ sj3/sj3.c Fri Oct 25 10:51:35 2002 +@@ -46,6 +46,9 @@ + #define LACKOF_SETLOCALE + #endif + #endif ++#if defined(__FreeBSD__) ++#include <sys/ioctl_compat.h> ++#endif + #include <curses.h> + #endif + +@@ -1058,14 +1061,13 @@ + return; + if (info.si_code == CLD_STOPPED) + #else +- union wait status; +- int pid; ++ int pid, status; + + /* + * Remove warning. + * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10 + */ +- pid = wait3 ((int *)&status, (WNOHANG|WUNTRACED), 0); ++ pid = wait3 (&status, (WNOHANG|WUNTRACED), 0); + if (WIFSTOPPED (status)) + #endif + suspend(); |