gnuchess: fix configure cache issue with readline

Make sure readline is built before gnuchess if enabled, so it correctly
detects it and doesn't populate tgt-config.cache with invalid values.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2010-07-27 09:25:39 +02:00
parent 03bb359cb7
commit a731c7d623
2 changed files with 12 additions and 9 deletions

19
CHANGES
View File

@ -22,15 +22,16 @@
berkeleydb, bash, blackbox, busybox, bzip2, cdrkit, cmake,
dash, dhcp, dialog, diffutils, distcc, dmalloc, dnsmasq,
dropbear, e2fsprogs, fbv, file, flex, fontconfig, gawk, gmpc,
gst-plugins-base, gst-plugins-good, gstreamer, gzip, intltool,
ipsec-tools, iptables, iw, libart, libcgi, libdrm, libfuse,
libgpg-error, libidn, liblockfile, libpng, lighttpd, links,
linux-fusion, lmbench, lrzsz, ltrace, make, module-init-tools,
mplayer, mysql_client, nbd, ncurses, neon, netcat, netperf,
ntfsprogs, openssl, php, qt, quagga, setserial, sdl, sdl_mixer,
sdl_sound, sdl_ttf, sqlite, squashfs, swfdec, tftpd, thttpd,
tn5250, tremor, usbutils, webif, wireless_tools,
xkeyboard-config, xserver_xorg-server, xvkbd
gnuchess, gst-plugins-base, gst-plugins-good, gstreamer, gzip,
intltool, ipsec-tools, iptables, iw, libart, libcgi, libdrm,
libfuse, libgpg-error, libidn, liblockfile, libpng, lighttpd,
links, linux-fusion, lmbench, lrzsz, ltrace, make,
module-init-tools, mplayer, mysql_client, nbd, ncurses, neon,
netcat, netperf, ntfsprogs, openssl, php, qt, quagga,
setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, sqlite,
squashfs, swfdec, tftpd, thttpd, tn5250, tremor, usbutils,
webif, wireless_tools, xkeyboard-config, xserver_xorg-server,
xvkbd
Removed packages: modutils, portage, rxvt

View File

@ -7,5 +7,7 @@ GNUCHESS_VERSION = 5.07
GNUCHESS_SOURCE = gnuchess-$(GNUCHESS_VERSION).tar.gz
GNUCHESS_SITE = $(BR2_GNU_MIRROR)/chess
GNUCHESS_DEPENDENCIES = $(if $(BR2_PACKAGE_READLINE),readline)
$(eval $(call AUTOTARGETS,package/games,gnuchess))