Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--INSTALL3
-rw-r--r--configure.in2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1be8d13..000c64f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2007-05-28 Bruno coudoin <bruno.coudoin@free.fr>
+ * configure.in: fixed the gnuchess search path to accept gnome-gnuchess
+ as well.
+
+2007-05-28 Bruno coudoin <bruno.coudoin@free.fr>
+
- Patch by Hans de Goede concerning the fullscreen mode:
I've also attached a patch for the fullscreen support as I use it / ship it in
Fedora. I noticed that you removed the code which make gcmopris leave
diff --git a/INSTALL b/INSTALL
index 9b767b4..f1ac1a1 100644
--- a/INSTALL
+++ b/INSTALL
@@ -20,7 +20,8 @@ Then, run /home/bruno/gcompris/bin/gcompris
Gcompris requires gtk-libs, libxml2, gnomecanvas, sqlite, and gdk-pixbuf.
gcompris also requires the gnuchess and gnucap package for the chess activity and
-electricity to run.
+electricity to run. If you have gnome-gnuchess instead of gnuchess, autoconf will
+detect it and compile with it.
GCompris includes several activity written in python.
To enable them, you need to have python installed on your system with the following packages:
diff --git a/configure.in b/configure.in
index ae85c05..41d4311 100644
--- a/configure.in
+++ b/configure.in
@@ -349,7 +349,7 @@ else
fi
dnl Test for gnuchess
-AC_PATH_PROGS(GNUCHESS, gnuchess, gnome-gnuchess,[/usr/bin:/usr/games:/usr/local/bin:$PATH])
+AC_PATH_PROGS(GNUCHESS, gnuchess gnome-gnuchess, no, [/usr/bin:/usr/games:/usr/local/bin:$PATH])
if test x$GNUCHESS = xno; then
AC_MSG_ERROR(Couldn't find gnuchess, please install the gnuchess package version 5 or above)