diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2007-06-06 14:11:24 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2007-06-06 14:11:24 +0000 |
commit | 1f76889f34f4a455ad23f900f36ba0ee869b0af0 (patch) | |
tree | b497a29fe4e5952f4584a5659f2a2c4f76c7e3bb | |
parent | - Update to 0.3.0 (diff) |
- Fix build with gcc42
PR: ports/113400
Submitted by: Conrad J. Sabatier <conrads@cox.net> (maintainer)
Notes
Notes:
svn path=/head/; revision=192928
-rw-r--r-- | games/gnuchess/files/patch-input.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games/gnuchess/files/patch-input.c b/games/gnuchess/files/patch-input.c new file mode 100644 index 000000000000..188fced02522 --- /dev/null +++ b/games/gnuchess/files/patch-input.c @@ -0,0 +1,11 @@ +--- src/input.c.orig Tue Jun 5 23:34:06 2007 ++++ src/input.c Tue Jun 5 23:34:14 2007 +@@ -92,7 +92,7 @@ + fgets(inputstr, MAXSTR, stdin); + } + +-static pthread_t input_thread; ++pthread_t input_thread; + + /* Mutex and condition variable for thread communication */ + |