diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-08 04:50:34 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-08 04:50:34 +0000 |
commit | 1c3fe0303596aa89671530aab804ea612b481601 (patch) | |
tree | 47a40d2280d9e6c966af23cce6e0258faaada437 /games/quakeforge | |
parent | 0696e83bb43a975a606f6d15f99c8d92ecab208d (diff) | |
download | ports-1c3fe0303596aa89671530aab804ea612b481601.tar.gz ports-1c3fe0303596aa89671530aab804ea612b481601.zip |
Notes
Diffstat (limited to 'games/quakeforge')
-rw-r--r-- | games/quakeforge/files/patch-qfbsp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/games/quakeforge/files/patch-qfbsp b/games/quakeforge/files/patch-qfbsp new file mode 100644 index 000000000000..34a84541f324 --- /dev/null +++ b/games/quakeforge/files/patch-qfbsp @@ -0,0 +1,27 @@ +--- tools/qfbsp/source/qfbsp.c.orig Wed Jun 25 18:33:19 2003 ++++ tools/qfbsp/source/qfbsp.c Wed Jun 25 18:45:55 2003 +@@ -30,6 +30,9 @@ + # include <strings.h> + #endif + #include <stdlib.h> ++#include <sys/types.h> ++#include <sys/wait.h> ++#include <unistd.h> + + #include "QF/quakefs.h" + #include "QF/sys.h" +@@ -748,12 +751,12 @@ + if (!fork ()) { + hullnum = 1; + options.verbosity = 0; +- drawflag = false; ++ options.drawflag = false; + sprintf (argv0, "HUL%i", hullnum); + } else if (!fork ()) { + hullnum = 2; + options.verbosity = 0; +- drawflag = false; ++ options.drawflag = false; + sprintf (argv0, "HUL%i", hullnum); + } + CreateSingleHull (); |