added gnuchess

This commit is contained in:
John Voltz 2008-03-06 18:10:50 +00:00
parent 70d3331748
commit dab3cd675c
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_GNUCHESS
bool "gnuchess"
default n
help
GNU Chess lets most modern computers play a full game of chess.
http://ftp.gnu.org/pub/gnu/chess

View File

@ -0,0 +1,11 @@
--- a/src/input.c 2003-07-01 13:06:43.000000000 -0400
+++ a/src/input.c 2008-02-13 12:24:43.000000000 -0500
@@ -92,7 +92,7 @@ void getline_standard(char *p)
fgets(inputstr, MAXSTR, stdin);
}
-static pthread_t input_thread;
+pthread_t input_thread;
/* Mutex and condition variable for thread communication */

View File

@ -0,0 +1,18 @@
#############################################################
#
# gnuchess
#
#############################################################
GNUCHESS_VERSION = 5.07
GNUCHESS_SOURCE = gnuchess-$(GNUCHESS_VERSION).tar.gz
GNUCHESS_SITE = http://ftp.gnu.org/pub/gnu/chess
GNUCHESS_AUTORECONF = NO
GNUCHESS_INSTALL_STAGING = NO
GNUCHESS_INSTALL_TARGET = YES
GNUCHESS_CONF_ENV = ac_cv_func_realloc_0_nonnull=yes ac_cv_func_malloc_0_nonnull=yes
GNUCHESS_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,gnuchess))