summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Boibessot <julien.boibessot@armadeus.com>2010-01-26 13:04:43 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2010-01-26 13:17:43 +0100
commit48b628b8613d5f9a40c426be766285ca1bdaae58 (patch)
treea2f2b4770ac58edb10e7cea28c779e19424959e5
parent99f74cbec5d5485776e36fc503faec17b737e4a2 (diff)
downloadbuildroot-novena-48b628b8613d5f9a40c426be766285ca1bdaae58.tar.gz
buildroot-novena-48b628b8613d5f9a40c426be766285ca1bdaae58.zip
sdl: needs tslib to be compiled first when selected.
If SDL is built before tslib, then SDL can't detect it at configure time and so touchscreen's support in SDL is crappy. Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--CHANGES2
-rw-r--r--package/sdl/sdl.mk4
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 8c1b7aaa2..25b955c69 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,7 +7,7 @@
Updated/fixed packages: autoconf, bind, binutils, bootutils, busybox,
directfb, e2fsprogs, gstreamer, gst-plugins-bad, hal, iptables,
iw, jpeg, kismet, libfuse, libpcap, libungif, lighttpd, mesa, mpg123,
- mtd-utils, neon, openvpn, pcre, qt, rpm, sdl_ttf, sqlite, sshfs,
+ mtd-utils, neon, openvpn, pcre, qt, rpm, sdl, sdl_ttf, sqlite, sshfs,
tremor, u-boot, usb_modeswitch, usbutils, wpa_supplicant, xfsprogs
Issues resolved (http://bugs.uclibc.org):
diff --git a/package/sdl/sdl.mk b/package/sdl/sdl.mk
index f66ecc4f1..959be7ef7 100644
--- a/package/sdl/sdl.mk
+++ b/package/sdl/sdl.mk
@@ -41,6 +41,10 @@ else
SDL_X11=--enable-video-x11=no
endif
+ifeq ($(BR2_PACKAGE_TSLIB),y)
+SDL_DEPENDENCIES += tslib
+endif
+
$(DL_DIR)/$(SDL_SOURCE):
$(call DOWNLOAD,$(SDL_SITE),$(SDL_SOURCE))