diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2010-05-19 08:58:23 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-05-31 22:43:05 +0200 |
commit | b76270bf9e6dd375e495fec92140a79a79415d27 (patch) | |
tree | 3dbed78b2279bf9f14207a16dc634b90995cbd40 /source/xap/gnuchess/gnuchess.getline.glibc.diff | |
parent | 5a12e7c134274dba706667107d10d231517d3e05 (diff) | |
download | current-b76270bf9e6dd375e495fec92140a79a79415d27.tar.gz current-b76270bf9e6dd375e495fec92140a79a79415d27.tar.xz |
Slackware 13.1slackware-13.1
Wed May 19 08:58:23 UTC 2010
Slackware 13.1 x86_64 stable is released!
Lots of thanks are due -- see the RELEASE_NOTES and the rest of the
ChangeLog for credits. The ISOs are on their way to replication,
a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD.
We are taking pre-orders now at store.slackware.com, and offering
a discount if you sign up for a subscription. Consider picking up
a copy to help support the project. Thanks again to the Slackware
community for testing, contributing, and generally holding us to a
high level of quality. :-)
Enjoy!
Diffstat (limited to 'source/xap/gnuchess/gnuchess.getline.glibc.diff')
-rw-r--r-- | source/xap/gnuchess/gnuchess.getline.glibc.diff | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/source/xap/gnuchess/gnuchess.getline.glibc.diff b/source/xap/gnuchess/gnuchess.getline.glibc.diff new file mode 100644 index 000000000..51a45df1d --- /dev/null +++ b/source/xap/gnuchess/gnuchess.getline.glibc.diff @@ -0,0 +1,39 @@ +--- ./src/input.c.orig 2010-02-19 21:34:10.000000000 -0600 ++++ ./src/input.c 2010-02-19 21:36:33.000000000 -0600 +@@ -127,7 +127,7 @@ + (RealGameCnt+1)/2 + 1 ); + } + pthread_mutex_lock(&input_mutex); +- getline(prompt); ++ chess_getline(prompt); + input_status = INPUT_AVAILABLE; + pthread_cond_signal(&input_cond); + pthread_mutex_unlock(&input_mutex); +@@ -173,13 +173,13 @@ + { + #ifdef HAVE_LIBREADLINE + if (isatty(STDIN_FILENO)) { +- getline = getline_readline; ++ chess_getline = getline_readline; + using_history(); + } else { +- getline = getline_standard; ++ chess_getline = getline_standard; + } + #else +- getline = getline_standard; ++ chess_getline = getline_standard; + #endif + /* Start input thread */ + pthread_create(&input_thread, NULL, input_func, NULL); +--- ./src/common.h.orig 2003-06-30 06:28:38.000000000 -0500 ++++ ./src/common.h 2010-02-19 21:35:33.000000000 -0600 +@@ -745,7 +745,7 @@ + * Input routine, initialized to one of the specific + * input routines. The given argument is the prompt. + */ +-void (*getline) (char *); ++void (*chess_getline) (char *); + + #define MAXSTR 128 + extern char inputstr[MAXSTR]; |