summaryrefslogtreecommitdiff
path: root/games/ccgo/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'games/ccgo/patches/patch-ab')
-rw-r--r--games/ccgo/patches/patch-ab21
1 files changed, 21 insertions, 0 deletions
diff --git a/games/ccgo/patches/patch-ab b/games/ccgo/patches/patch-ab
new file mode 100644
index 00000000000..67bb016d948
--- /dev/null
+++ b/games/ccgo/patches/patch-ab
@@ -0,0 +1,21 @@
+$NetBSD: patch-ab,v 1.1.1.1 2003/03/16 03:56:27 rh Exp $
+
+--- igs/fork.cc.orig 2002-11-24 02:49:32.000000000 +1000
++++ igs/fork.cc
+@@ -15,6 +15,7 @@ extern "C" {
+ #include <sys/fcntl.h>
+ #include <sys/wait.h>
+ #include <unistd.h>
++#include <signal.h>
+ }
+
+ using namespace igs;
+@@ -143,7 +144,7 @@ bool Fork::open_conn(const std::string &
+ close(c2p[0]);
+ close(c2p[1]);
+ close(2); // close cerr
+- char * shell = "/bin/bash";
++ char * shell = "/bin/sh";
+ std::string c = std::string ("exec ") + n;
+ execl(shell, shell, "-c", c.c_str(), 0);
+ std::cerr << "Fail to fork: " << n << std::endl;