diff options
author | Lionel Landwerlin <llandwerlin@gmail.com> | 2010-01-27 02:09:02 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-01-28 22:52:22 +0100 |
commit | b732fe6db6919183c07618b02981873ba5c22da8 (patch) | |
tree | 7b4b964f590b6f7b41e7eaeda959b2a23f989f62 | |
parent | fe6e67ba96b7fedf91faac7992813f7233a5e58b (diff) |
libxslt: fix dependency on libxml
[Peter: fix indentation]
Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | package/libxslt/Config.in | 1 | ||||
-rw-r--r-- | package/libxslt/libxslt.mk | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -7,7 +7,7 @@ Updated/fixed packages: at, autoconf, bash, bind, binutils, bootutils, busybox, directfb, dnsmasq, e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, flex, hal, iptables, iw, jpeg, kismet, libfuse, - libglib2, libpcap, libungif, libxml2, lighttpd, mesa, mpg123, + libglib2, libpcap, libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, neon, netstat-nat, openvpn, pcre, qt, readline, rpm, sawman, sdl, sdl_ttf, ser2net, sqlite, sshfs, tremor, u-boot, usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib diff --git a/package/libxslt/Config.in b/package/libxslt/Config.in index c31896617..1dca1f09f 100644 --- a/package/libxslt/Config.in +++ b/package/libxslt/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBXSLT bool "libxslt" + select BR2_PACKAGE_LIBXML2 help Install the xslt library which is used to transform XML files to other XML files. diff --git a/package/libxslt/libxslt.mk b/package/libxslt/libxslt.mk index 247880092..03c113103 100644 --- a/package/libxslt/libxslt.mk +++ b/package/libxslt/libxslt.mk @@ -23,7 +23,7 @@ LIBXSLT_CONF_OPT = --with-gnu-ld --enable-shared \ --without-threads \ --with-libxml-prefix=$(STAGING_DIR)/usr/ -LIBXSLT_DEPENDENCIES = $(LIBXSLT_DEPENDENCIES_EXTRA) +LIBXSLT_DEPENDENCIES = libxml2 $(LIBXSLT_DEPENDENCIES_EXTRA) $(eval $(call AUTOTARGETS,package,libxslt)) |