diff options
Diffstat (limited to 'package')
72 files changed, 261 insertions, 86 deletions
diff --git a/package/atk/Config.in b/package/atk/Config.in index e7f75b391..928fae746 100644 --- a/package/atk/Config.in +++ b/package/atk/Config.in @@ -1,5 +1,9 @@ config BR2_PACKAGE_ATK bool "atk" select BR2_PACKAGE_LIBGLIB2 + depends on BR2_USE_WCHAR # glib2 help The ATK accessibility toolkit, needed to build GTK+-2.x. + +comment "atk requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/avahi/Config.in b/package/avahi/Config.in index 338600515..eb3ccb67b 100644 --- a/package/avahi/Config.in +++ b/package/avahi/Config.in @@ -1,7 +1,7 @@ config BR2_PACKAGE_AVAHI bool "avahi" - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT - select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE help Avahi is a system which facilitates service discovery on a local network. diff --git a/package/avahi/avahi.mk b/package/avahi/avahi.mk index ca55e2786..66e2e6325 100644 --- a/package/avahi/avahi.mk +++ b/package/avahi/avahi.mk @@ -82,7 +82,7 @@ AVAHI_CONF_OPT = --localstatedir=/var \ --with-autoipd-user=default \ --with-autoipd-group=default -AVAHI_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT),gettext libintl) host-intltool +AVAHI_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) host-intltool ifneq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_AVAHI_AUTOIPD),) AVAHI_DEPENDENCIES += libdaemon diff --git a/package/bmon/Config.in b/package/bmon/Config.in index f42d19ad6..667788bc0 100644 --- a/package/bmon/Config.in +++ b/package/bmon/Config.in @@ -1,5 +1,9 @@ config BR2_PACKAGE_BMON bool "bmon" + depends on BR2_INET_IPV6 select BR2_PACKAGE_NCURSES help Linux bandwidth monitor + +comment "bmon requires a toolchain with IPv6 support" + depends on !BR2_INET_IPV6 diff --git a/package/cairo/Config.in b/package/cairo/Config.in index e19efb5c4..752f61510 100644 --- a/package/cairo/Config.in +++ b/package/cairo/Config.in @@ -16,6 +16,7 @@ if BR2_PACKAGE_CAIRO config BR2_PACKAGE_CAIRO_PS bool "postscript support" select BR2_PACKAGE_ZLIB + select BR2_PACKAGE_CAIRO_PDF config BR2_PACKAGE_CAIRO_PDF bool "pdf support" diff --git a/package/cdrkit/Config.in b/package/cdrkit/Config.in index 2e255819a..7ff50f3f4 100644 --- a/package/cdrkit/Config.in +++ b/package/cdrkit/Config.in @@ -1,11 +1,15 @@ config BR2_PACKAGE_CDRKIT - # Needed for libbz - select BR2_PACKAGE_BZIP2 - select BR2_PACKAGE_LIBCAP - bool "cdrkit" - help - cdrkit is a suite of programs for recording CDs and DVDs, - blanking CD-RW media, creating ISO-9660 filesystem images, - extracting audio CD data, and more. + # Needed for libbz + select BR2_PACKAGE_BZIP2 + select BR2_PACKAGE_LIBCAP + depends on BR2_LARGEFILE + bool "cdrkit" + help + cdrkit is a suite of programs for recording CDs and DVDs, + blanking CD-RW media, creating ISO-9660 filesystem images, + extracting audio CD data, and more. - http://www.cdrkit.org/ + http://www.cdrkit.org/ + +comment "cdrkit requires a toolchain with LARGEFILE support" + depends on !BR2_LARGEFILE diff --git a/package/config/Makefile.kconfig b/package/config/Makefile.kconfig index 6974cc3b5..6d89e597e 100644 --- a/package/config/Makefile.kconfig +++ b/package/config/Makefile.kconfig @@ -149,10 +149,15 @@ ifeq ($(gconf-target),1) gconf-objs := gconf.o kconfig_load.o zconf.tab.o endif -clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \ - .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c gconf.glade.h -clean-files += mconf qconf gconf -clean-files += config.pot linux.pot +clean-files := lkc_defs.h qconf.moc .tmp_qtcheck \ + .tmp_gtkcheck zconf.tab.c lex.zconf.c zconf.hash.c gconf.glade.h +clean-files += config.pot linux.pot +clean-files += conf $(conf-objs) +clean-files += mconf $(mconf-objs) +clean-files += qconf qconf.o +clean-files += gconf gconf.o +clean-files += kconfig_load.o zconf.tab.o +clean-files += $(kxgettext-objs) # Check that we have the required ncurses stuff installed for lxdialog (menuconfig) PHONY += $(obj)/dochecklxdialog diff --git a/package/dbus-glib/Config.in b/package/dbus-glib/Config.in index 7c992b03e..c019be73b 100644 --- a/package/dbus-glib/Config.in +++ b/package/dbus-glib/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_DBUS_GLIB bool "dbus-glib" depends on BR2_PACKAGE_DBUS depends on BR2_DBUS_EXPAT + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 help GLib bindings for D-Bus. @@ -10,3 +11,6 @@ config BR2_PACKAGE_DBUS_GLIB comment "dbus-glib needs dbus to be compiled with expat support" depends on BR2_PACKAGE_DBUS && !BR2_DBUS_EXPAT + +comment "dbus-glib requires a toolchain with WCHAR support" + depends on BR2_PACKAGE_DBUS && !BR2_USE_WCHAR diff --git a/package/dbus-python/Config.in b/package/dbus-python/Config.in index f5705a544..91c127d05 100644 --- a/package/dbus-python/Config.in +++ b/package/dbus-python/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_DBUS_PYTHON bool "dbus-python" + depends on BR2_USE_WCHAR # glib2 depends on BR2_PACKAGE_DBUS depends on BR2_PACKAGE_PYTHON select BR2_PACKAGE_DBUS_GLIB @@ -7,3 +8,6 @@ config BR2_PACKAGE_DBUS_PYTHON Python bindings for D-Bus http://dbus.freedesktop.org/doc/dbus-python/ + +comment "dbus-python requires a toolchain with WCHAR support" + depends on BR2_PACKAGE_DBUS && BR2_PACKAGE_PYTHON && !BR2_USE_WCHAR diff --git a/package/docker/Config.in b/package/docker/Config.in index 02ef83c2e..75bf5bede 100644 --- a/package/docker/Config.in +++ b/package/docker/Config.in @@ -1,8 +1,12 @@ config BR2_PACKAGE_DOCKER bool "docker" depends on BR2_PACKAGE_XORG7 + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 help a system tray dock for X http://icculus.org/openbox/2/docker + +comment "docker requires a toolchain with WCHAR support" + depends on BR2_PACKAGE_XORG7 && !BR2_USE_WCHAR diff --git a/package/enchant/Config.in b/package/enchant/Config.in index e65d68116..33f36db41 100644 --- a/package/enchant/Config.in +++ b/package/enchant/Config.in @@ -1,9 +1,13 @@ config BR2_PACKAGE_ENCHANT bool "enchant" depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 help Enchant is a spell-checking library that provides a consistent API across a number of spell-checking system backends. http://www.abisource.com/projects/enchant/ + +comment "enchant requires a toolchain with C++ and WCHAR support enabled" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR diff --git a/package/gamin/Config.in b/package/gamin/Config.in index d4e9bcc79..3ede2e4d7 100644 --- a/package/gamin/Config.in +++ b/package/gamin/Config.in @@ -1,7 +1,11 @@ config BR2_PACKAGE_GAMIN bool "gamin" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 help the File Alteration Monitor http://www.gnome.org/~veillard/gamin/sources + +comment "gamin requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/gettext/Config.in b/package/gettext/Config.in index c6792acd7..c1ae97f61 100644 --- a/package/gettext/Config.in +++ b/package/gettext/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_GETTEXT bool "gettext" depends on BR2_NEEDS_GETTEXT + depends on BR2_USE_WCHAR help The GNU `gettext' utilities are a set of tools that provide a framework to help other GNU packages produce multi-lingual @@ -8,6 +9,9 @@ config BR2_PACKAGE_GETTEXT http://www.gnu.org/software/gettext/ +comment "gettext requires a toolchain with WCHAR support" + depends on BR2_NEEDS_GETTEXT && !BR2_USE_WCHAR + config BR2_PACKAGE_GETTEXT_STATIC bool "Use libgettext.a instead of libgettext.so.*" depends on BR2_PACKAGE_GETTEXT diff --git a/package/gmpc/Config.in b/package/gmpc/Config.in index 056f5a077..7bfe611ea 100644 --- a/package/gmpc/Config.in +++ b/package/gmpc/Config.in @@ -1,9 +1,10 @@ config BR2_PACKAGE_GMPC bool "gmpc" depends on BR2_PACKAGE_LIBGTK2 + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT - select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE select BR2_PACKAGE_LIBMPD select BR2_PACKAGE_LIBCURL @@ -14,3 +15,6 @@ config BR2_PACKAGE_GMPC Music Player Daemon. http://gmpcwiki.sarine.nl/index.php?title=GMPC + +comment "gmpc requires a toolchain with WCHAR support" + depends on BR2_PACKAGE_LIBGTK2 && !BR2_USE_WCHAR diff --git a/package/gmpc/gmpc.mk b/package/gmpc/gmpc.mk index aa74a2e2f..6016e7cfc 100644 --- a/package/gmpc/gmpc.mk +++ b/package/gmpc/gmpc.mk @@ -12,7 +12,7 @@ GMPC_CONF_ENV = ac_cv_lib_curl_curl_global_init=yes \ GMPC_CONF_OPT = --disable-mmkeys GMPC_DEPENDENCIES = libglib2 libgtk2 libglade libcurl libmpd host-gob2 host-intltool \ - $(if $(BR2_NEEDS_GETTEXT),gettext libintl) + $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) ifeq ($(BR2_PACKAGE_XLIB_LIBSM),y) GMPC_DEPENENCIES += xlib_libSM diff --git a/package/gob2/Config.in b/package/gob2/Config.in index 2545bafa6..562ac3123 100644 --- a/package/gob2/Config.in +++ b/package/gob2/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_GOB2 bool "gob2" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_FLEX select BR2_PACKAGE_FLEX_LIBFL @@ -9,3 +10,6 @@ config BR2_PACKAGE_GOB2 the writing of GObjects in C. http://www.jirka.org/gob.html + +comment "gob2 requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/gob2/gob2.mk b/package/gob2/gob2.mk index 5d50ed6cb..04b3798f7 100644 --- a/package/gob2/gob2.mk +++ b/package/gob2/gob2.mk @@ -6,6 +6,7 @@ GOB2_VERSION = 2.0.15 GOB2_SOURCE = gob2-$(GOB2_VERSION).tar.gz GOB2_SITE = http://ftp.5z.com/pub/gob/ +IPERF_CONF_ENV = ac_cv_lib_lex=-lfl GOB2_DEPENDENCIES = libglib2 flex bison host-pkg-config host-flex diff --git a/package/grep/Config.in b/package/grep/Config.in index f898fdf4a..430616b18 100644 --- a/package/grep/Config.in +++ b/package/grep/Config.in @@ -1,7 +1,7 @@ config BR2_PACKAGE_GREP bool "grep" - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT - select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE help The GNU regular expression matcher. diff --git a/package/grep/grep.mk b/package/grep/grep.mk index 93c6cafdd..5b945d5f2 100644 --- a/package/grep/grep.mk +++ b/package/grep/grep.mk @@ -8,6 +8,6 @@ GREP_SOURCE:=grep-$(GREP_VERSION).tar.bz2 GREP_SITE:=$(BR2_GNU_MIRROR)/grep GREP_CONF_OPT = --disable-perl-regexp --without-included-regex -GREP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT),gettext libintl) +GREP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) $(eval $(call AUTOTARGETS,package,grep)) diff --git a/package/gvfs/Config.in b/package/gvfs/Config.in index 8a541e751..04fce93fa 100644 --- a/package/gvfs/Config.in +++ b/package/gvfs/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_GVFS bool "gvfs" depends on BR2_LARGEFILE + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_EXPAT # needed by dbus(-glib) select BR2_PACKAGE_DBUS @@ -15,5 +16,5 @@ config BR2_PACKAGE_GVFS http://en.wikipedia.org/wiki/GVFS -comment "gvfs requires a toolchain with LARGEFILE support" - depends on !BR2_LARGEFILE +comment "gvfs requires a toolchain with LARGEFILE and WCHAR support" + depends on !BR2_LARGEFILE || !BR2_USE_WCHAR diff --git a/package/hal/Config.in b/package/hal/Config.in index 9518f1355..f8dc9dd8a 100644 --- a/package/hal/Config.in +++ b/package/hal/Config.in @@ -1,9 +1,10 @@ config BR2_PACKAGE_HAL bool "hal" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_EXPAT select BR2_PACKAGE_LIBGLIB2 - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT - select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE select BR2_PACKAGE_DBUS select BR2_PACKAGE_DBUS_EXPAT @@ -13,3 +14,6 @@ config BR2_PACKAGE_HAL select BR2_PACKAGE_UDEV_VOLUME_ID help The Hardware Abstraction Layer (HAL) suite. + +comment "hal requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/hal/hal.mk b/package/hal/hal.mk index 62eca704a..801fe9275 100644 --- a/package/hal/hal.mk +++ b/package/hal/hal.mk @@ -79,7 +79,7 @@ $(TARGET_DIR)/$(HAL_TARGET_BINARY): $(HAL_DIR)/hald/hald rm -f $(TARGET_DIR)/usr/libexec/$$file; \ done -hal: host-pkg-config host-libxml-parser-perl dbus-glib hwdata udev $(if $(BR2_NEEDS_GETTEXT),gettext libintl) $(TARGET_DIR)/$(HAL_TARGET_BINARY) +hal: host-pkg-config host-libxml-parser-perl dbus-glib hwdata udev $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) $(TARGET_DIR)/$(HAL_TARGET_BINARY) hal-clean: rm -f $(TARGET_DIR)/etc/dbus-1/system.d/hal.conf diff --git a/package/icu/icu-both-elif-no-arguments.patch b/package/icu/icu-both-elif-no-arguments.patch new file mode 100644 index 000000000..8941c53b1 --- /dev/null +++ b/package/icu/icu-both-elif-no-arguments.patch @@ -0,0 +1,23 @@ +[PATCH] icu: fix #elif without arguments + +ParagraphLayout.cpp contains an #elif without any arguments, which +g++ >= 4.4 flags as an error. Fix it by replacing it with an #else. + +Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> +--- + source/layoutex/ParagraphLayout.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: source/layoutex/ParagraphLayout.cpp +=================================================================== +--- source.orig/layoutex/ParagraphLayout.cpp ++++ source/layoutex/ParagraphLayout.cpp +@@ -813,7 +813,7 @@ le_int32 ParagraphLayout::getLanguageCod + + return nullLanguageCode; + } +-#elif ++#else + + // TODO - dummy implementation for right now... + le_int32 ParagraphLayout::getLanguageCode(const Locale *locale) diff --git a/package/icu/icu.mk b/package/icu/icu.mk index 589c31fbb..17f153e64 100644 --- a/package/icu/icu.mk +++ b/package/icu/icu.mk @@ -21,6 +21,7 @@ $(ICU_DIR)/.unpacked: $(DL_DIR)/$(ICU_SOURCE) $(CONFIG_UPDATE) $(ICU_DIR) cp -a $(BUILD_DIR)/icu $(BUILD_DIR)/icu-host toolchain/patch-kernel.sh $(ICU_DIR) package/icu/ \*.patch + toolchain/patch-kernel.sh $(ICU_HOST_DIR) package/icu/ \*both\*.patch touch $(ICU_DIR)/.unpacked $(ICU_HOST_DIR)/.configured: $(ICU_DIR)/.unpacked @@ -45,13 +46,13 @@ $(ICU_DIR)/.configured: $(ICU_HOST_DIR)/.configured touch $(ICU_DIR)/.configured $(ICU_HOST_DIR)/.done: $(ICU_DIR)/.configured - $(MAKE) -C $(ICU_HOST_DIR) + $(MAKE1) -C $(ICU_HOST_DIR) ln -s -f $(ICU_HOST_DIR)/bin $(ICU_DIR)/bin-host ln -s -f $(ICU_HOST_DIR)/lib $(ICU_DIR)/lib-host touch $(ICU_HOST_DIR)/.done $(ICU_DIR)/.done: $(ICU_HOST_DIR)/.done - $(MAKE) -C $(ICU_DIR) + $(MAKE1) -C $(ICU_DIR) $(MAKE) -C $(ICU_DIR) install DESTDIR=$(STAGING_DIR) $(MAKE) -C $(ICU_DIR) install DESTDIR=$(TARGET_DIR) $(SED) "s,^default_prefix=.*,default_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/icu-config diff --git a/package/iperf/iperf.mk b/package/iperf/iperf.mk index 10e5a3783..3f8e3fc8c 100644 --- a/package/iperf/iperf.mk +++ b/package/iperf/iperf.mk @@ -14,7 +14,9 @@ IPERF_INSTALL_STAGING = NO IPERF_INSTALL_TARGET = YES IPERF_CONF_ENV = \ - ac_cv_func_malloc_0_nonnull=yes + ac_cv_func_malloc_0_nonnull=yes \ + ac_cv_type_bool=yes \ + ac_cv_sizeof_bool=1 IPERF_CONF_OPT = \ --disable-dependency-tracking \ diff --git a/package/libglade/Config.in b/package/libglade/Config.in index 2fb6eb60a..f7a9a1ce0 100644 --- a/package/libglade/Config.in +++ b/package/libglade/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_LIBGLADE bool "libglade" depends on BR2_PACKAGE_LIBGTK2 + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_ATK select BR2_PACKAGE_LIBXML2 @@ -10,3 +11,6 @@ config BR2_PACKAGE_LIBGLADE by far the easiest way to create the interface files. http://ftp.gnome.org/pub/GNOME/sources/libglade/ + +comment "libglade requires a toolchain with WCHAR support" + depends on BR2_PACKAGE_LIBGTK2 && !BR2_USE_WCHAR diff --git a/package/libglib2/Config.in b/package/libglib2/Config.in index cc1d6e27b..43ca7c007 100644 --- a/package/libglib2/Config.in +++ b/package/libglib2/Config.in @@ -3,7 +3,11 @@ config BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE + depends on BR2_USE_WCHAR # gettext help Low-level core library that forms the basis of GTK+ and GNOME. http://www.gtk.org/ + +comment "libglib2 requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/libgtk2/Config.in b/package/libgtk2/Config.in index 5c0482d61..5eec77a5c 100644 --- a/package/libgtk2/Config.in +++ b/package/libgtk2/Config.in @@ -7,7 +7,11 @@ config BR2_PACKAGE_LIBGTK2 select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_PANGO depends on BR2_PACKAGE_XORG7||BR2_PACKAGE_DIRECTFB + depends on BR2_USE_WCHAR # glib2 help The GTK+ version 2 graphical user interface library http://www.gtk.org/ + +comment "libgtk2 requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/libidn/Config.in b/package/libidn/Config.in index 793fbc3d2..04f890072 100644 --- a/package/libidn/Config.in +++ b/package/libidn/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBIDN bool "libidn" + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE help Libidn's purpose is to encode and decode internationalized domain names. diff --git a/package/libidn/libidn.mk b/package/libidn/libidn.mk index bc8e00140..4b3bea3a5 100644 --- a/package/libidn/libidn.mk +++ b/package/libidn/libidn.mk @@ -10,7 +10,7 @@ LIBIDN_INSTALL_STAGING = YES LIBIDN_INSTALL_TARGET = YES LIBIDN_CONF_OPT = --enable-shared --disable-java --enable-csharp=no LIBIDN_LIBTOOL_PATCH = NO -LIBIDN_DEPENDENCIES = host-pkg-config $(if $(BR2_NEEDS_GETTEXT),gettext) $(if $(BR2_PACKAGE_LIBICONV),libiconv) +LIBIDN_DEPENDENCIES = host-pkg-config $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) $(if $(BR2_PACKAGE_LIBICONV),libiconv) $(eval $(call AUTOTARGETS,package,libidn)) diff --git a/package/libsoup/Config.in b/package/libsoup/Config.in index 6bccd1116..2264b63cc 100644 --- a/package/libsoup/Config.in +++ b/package/libsoup/Config.in @@ -1,10 +1,16 @@ config BR2_PACKAGE_LIBSOUP bool "libsoup" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBXML2 select BR2_PACKAGE_LIBGLIB2 + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT help libsoup is an HTTP client/server library. It uses GObject and the GLib main loop, to integrate well with GNOME applications. http://live.gnome.org/LibSoup + +comment "libsoup requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/libsoup/libsoup.mk b/package/libsoup/libsoup.mk index 45f62e8e4..9757698be 100644 --- a/package/libsoup/libsoup.mk +++ b/package/libsoup/libsoup.mk @@ -26,6 +26,6 @@ LIBSOUP_CONF_OPT = \ --without-gnome \ --disable-gtk-doc -LIBSOUP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT),gettext libintl) host-pkg-config host-libglib2 libglib2 libxml2 +LIBSOUP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) host-pkg-config host-libglib2 libglib2 libxml2 $(eval $(call AUTOTARGETS,package,libsoup)) diff --git a/package/lmbench/Config.in b/package/lmbench/Config.in index d09a333c9..c8423d1ef 100644 --- a/package/lmbench/Config.in +++ b/package/lmbench/Config.in @@ -9,4 +9,4 @@ config BR2_PACKAGE_LMBENCH http://sourceforge.net/projects/lmbench/ comment "lmbench requires a toolchain with RPC support" - depends on !BR2_INET_RPC + depends on !BR2_INET_RPC diff --git a/package/lsof/Config.in b/package/lsof/Config.in index cc7512c25..22b7f5eac 100644 --- a/package/lsof/Config.in +++ b/package/lsof/Config.in @@ -1,8 +1,12 @@ config BR2_PACKAGE_LSOF bool "lsof" + depends on BR2_INET_RPC help lsof (LiSt Open Files) The lsof tool lists information about files opened by processes. ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ + +comment "lsof requires a toolchain with RPC support" + depends on !BR2_INET_RPC diff --git a/package/make/Config.in b/package/make/Config.in index 674e245e9..364bb1e18 100644 --- a/package/make/Config.in +++ b/package/make/Config.in @@ -1,7 +1,7 @@ config BR2_PACKAGE_MAKE bool "make" - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT - select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE help A tool which controls the generation of executables and other non-source files of a program from the program's source files. diff --git a/package/make/make.mk b/package/make/make.mk index 5dd06379f..0b2657d3f 100644 --- a/package/make/make.mk +++ b/package/make/make.mk @@ -56,7 +56,7 @@ $(TARGET_DIR)/$(GNUMAKE_TARGET_BINARY): $(GNUMAKE_DIR)/$(GNUMAKE_BINARY) rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc -make: $(if $(BR2_NEEDS_GETTEXT),gettext) $(TARGET_DIR)/$(GNUMAKE_TARGET_BINARY) +make: $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) $(TARGET_DIR)/$(GNUMAKE_TARGET_BINARY) make-clean: $(MAKE) DESTDIR=$(TARGET_DIR) -C $(GNUMAKE_DIR) uninstall diff --git a/package/metacity/Config.in b/package/metacity/Config.in index 12c54d117..c483c44e2 100644 --- a/package/metacity/Config.in +++ b/package/metacity/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_METACITY bool "metacity" - select BR2_PACKAGE_LIBGTK2 + depends on BR2_PACKAGE_LIBGTK2 depends on BR2_PACKAGE_XORG7 help Metacity is a window manager for the X Window System. diff --git a/package/mtd/Config.in b/package/mtd/Config.in index 0ba71d333..692654ca8 100644 --- a/package/mtd/Config.in +++ b/package/mtd/Config.in @@ -79,8 +79,12 @@ config BR2_PACKAGE_MTD_NFTL_FORMAT bool "nftl_format" config BR2_PACKAGE_MTD_RECV_IMAGE + depends on BR2_INET_IPV6 bool "recv_image" +comment "recv_image requires a toolchain with IPv6 support" + depends on !BR2_INET_IPV6 + config BR2_PACKAGE_MTD_RFDDUMP bool "rfddump" diff --git a/package/multimedia/gst-plugins-bad/Config.in b/package/multimedia/gst-plugins-bad/Config.in index 3d2480af6..e25b756df 100644 --- a/package/multimedia/gst-plugins-bad/Config.in +++ b/package/multimedia/gst-plugins-bad/Config.in @@ -58,7 +58,11 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDNAV bool "dvdnav" - select BR2_PACKAGE_LIBDVDNAV + depends on BR2_LARGEFILE # libdvdread + select BR2_PACKAGE_LIBDVDNAV + +comment "dvdnav requires a toolchain with LARGEFILE support" + depends on !BR2_LARGEFILE config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDSPU bool "dvdspu" diff --git a/package/multimedia/gst-plugins-base/gst-plugins-base.mk b/package/multimedia/gst-plugins-base/gst-plugins-base.mk index 4d7f6dbc4..5cb8cb870 100644 --- a/package/multimedia/gst-plugins-base/gst-plugins-base.mk +++ b/package/multimedia/gst-plugins-base/gst-plugins-base.mk @@ -23,7 +23,8 @@ GST_PLUGINS_BASE_CONF_OPT = \ --disable-vorbistest \ --disable-freetypetest -GST_PLUGINS_BASE_DEPENDENCIES = gstreamer liboil +GST_PLUGINS_BASE_DEPENDENCIES = gstreamer liboil \ + $(if $(BR2_PACKAGE_ALSA_LIB),alsa-lib) ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ADDER),y) GST_PLUGINS_BASE_CONF_OPT += --enable-adder diff --git a/package/multimedia/gstreamer/Config.in b/package/multimedia/gstreamer/Config.in index 8c8080173..a3ce85957 100644 --- a/package/multimedia/gstreamer/Config.in +++ b/package/multimedia/gstreamer/Config.in @@ -1,11 +1,15 @@ config BR2_PACKAGE_GSTREAMER bool "gstreamer" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 help GStreamer is an open source multimedia framework. http://gstreamer.freedesktop.org/ +comment "gstreamer requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR + config BR2_PACKAGE_GSTREAMER_LIBXML2 bool "require libxml2 for registry and load/save" default y diff --git a/package/multimedia/libdvdnav/Config.in b/package/multimedia/libdvdnav/Config.in index c4d73a031..5ba31e875 100644 --- a/package/multimedia/libdvdnav/Config.in +++ b/package/multimedia/libdvdnav/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBDVDNAV bool "libdvdnav" + depends on BR2_LARGEFILE # libdvdread select BR2_PACKAGE_LIBDVDREAD help libdvdnav is a library that allows easy use of sophisticated @@ -7,3 +8,6 @@ config BR2_PACKAGE_LIBDVDNAV playback and even interactive DVD games. http://www.mplayerhq.hu + +comment "libdvdnav requires a toolchain with LARGEFILE support" + depends on !BR2_LARGEFILE diff --git a/package/multimedia/libdvdread/Config.in b/package/multimedia/libdvdread/Config.in index dea59eb05..b63f08286 100644 --- a/package/multimedia/libdvdread/Config.in +++ b/package/multimedia/libdvdread/Config.in @@ -1,7 +1,11 @@ config BR2_PACKAGE_LIBDVDREAD bool "libdvdread" + depends on BR2_LARGEFILE help libdvdread provides a simple foundation for reading DVD-Video images. http://www.mplayerhq.hu/MPlayer/releases/dvdnav/ + +comment "libdvdread requires a toolchain with LARGEFILE support" + depends on !BR2_LARGEFILE diff --git a/package/multimedia/libmms/Config.in b/package/multimedia/libmms/Config.in index 02055c4c2..17cb406a6 100644 --- a/package/multimedia/libmms/Config.in +++ b/package/multimedia/libmms/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBMMS bool "libmms" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 help LibMMS is a common library for parsing mms:// and mmsh:// @@ -9,3 +10,6 @@ config BR2_PACKAGE_LIBMMS all. http://launchpad.net/libmms + +comment "libmms requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/multimedia/libmpd/Config.in b/package/multimedia/libmpd/Config.in index 4f3a7144f..9259c19ee 100644 --- a/package/multimedia/libmpd/Config.in +++ b/package/multimedia/libmpd/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBMPD bool "libmpd" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE help @@ -8,3 +9,6 @@ config BR2_PACKAGE_LIBMPD access to Music Player Daemon (mpd). http://gmpcwiki.sarine.nl/index.php?title=Libmpd + +comment "libmpd requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/multimedia/swfdec/Config.in b/package/multimedia/swfdec/Config.in index 7a51e2efa..2a79756d1 100644 --- a/package/multimedia/swfdec/Config.in +++ b/package/multimedia/swfdec/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_SWFDEC bool "swfdec" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBOIL select BR2_PACKAGE_ALSA_LIB select BR2_PACKAGE_PANGO @@ -15,6 +16,7 @@ config BR2_PACKAGE_SWFDEC_GTK_SUPPORT depends on BR2_PACKAGE_SWFDEC depends on BR2_PACKAGE_LIBGTK2 select BR2_PACKAGE_LIBSOUP + default y help Swfdec-gtk library is used for easy integration of swfdec in GTK applications @@ -22,8 +24,11 @@ config BR2_PACKAGE_SWFDEC_GTK_SUPPORT config BR2_PACKAGE_SWFDEC_GSTREAMER bool "gstreamer support" depends on BR2_PACKAGE_SWFDEC - select BR2_PACKAGE_GSTREAMER + depends on BR2_PACKAGE_GSTREAMER select BR2_PACKAGE_GST_PLUGINS_BASE + default y help Enables GStreamer support +comment "swfdec requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/mutt/Config.in b/package/mutt/Config.in index d345dfe15..754979a6a 100644 --- a/package/mutt/Config.in +++ b/package/mutt/Config.in @@ -1,8 +1,11 @@ config BR2_PACKAGE_MUTT - bool "mutt (BROKEN for wchar; FIXME!)" + bool "mutt" + depends on BR2_USE_WCHAR select BR2_PACKAGE_NCURSES help Mutt is a sophisticated text-based Mail User Agent (MUA) http://www.mutt.org/ +comment "mutt requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/nbd/Config.in b/package/nbd/Config.in index 66c24afa3..6e92f935d 100644 --- a/package/nbd/Config.in +++ b/package/nbd/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_NBD bool "nbd" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 help NBD is a set of utilities to configure network block devices, @@ -9,6 +10,9 @@ config BR2_PACKAGE_NBD http://nbd.sf.net/ +comment "nbd requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR + if BR2_PACKAGE_NBD config BR2_NBD_CLIENT diff --git a/package/ntfsprogs/Config.in b/package/ntfsprogs/Config.in index 38b955e56..836a2b6fe 100644 --- a/package/ntfsprogs/Config.in +++ b/package/ntfsprogs/Config.in @@ -1,10 +1,11 @@ config BR2_PACKAGE_NTFSPROGS bool "ntfsprogs" depends on BR2_USE_WCHAR + depends on BR2_LARGEFILE help wide collection of NTFS utilities http://www.linux-ntfs.org/ -comment "ntfsprogs requires a toolchain with WCHAR support" - depends on !BR2_USE_WCHAR +comment "ntfsprogs requires a toolchain with WCHAR and LARGEFILE support" + depends on !BR2_USE_WCHAR || !BR2_LARGEFILE diff --git a/package/olsr/Config.in b/package/olsr/Config.in index ca45f73bd..ada82b406 100644 --- a/package/olsr/Config.in +++ b/package/olsr/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_OLSR bool "OLSR mesh networking Daemon" + depends on BR2_INET_IPV6 help The Optimized Link State Routing protocol (OLSR) is a routing protocol that is optimised for mobile ad-hoc @@ -9,3 +10,6 @@ config BR2_PACKAGE_OLSR compute optimal forwarding paths locally. http://www.olsr.org/ + +comment "olsr requires a toolchain with IPv6 support" + depends on !BR2_INET_IPV6 diff --git a/package/pango/Config.in b/package/pango/Config.in index bf2fc6e70..e4c084d0c 100644 --- a/package/pango/Config.in +++ b/package/pango/Config.in @@ -1,8 +1,11 @@ config BR2_PACKAGE_PANGO bool "pango" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_EXPAT select BR2_PACKAGE_CAIRO + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE help Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that @@ -11,3 +14,6 @@ config BR2_PACKAGE_PANGO core of text and font handling for GTK+-2.x. http://www.pango.org/ + +comment "pango requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/pango/pango.mk b/package/pango/pango.mk index c64004584..ad3824661 100644 --- a/package/pango/pango.mk +++ b/package/pango/pango.mk @@ -40,7 +40,7 @@ PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \ PANGO_CONF_OPT = --enable-shared --enable-static \ --enable-explicit-deps=no --disable-debug -PANGO_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT),gettext libintl) host-pkg-config libglib2 cairo +PANGO_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) host-pkg-config libglib2 cairo ifeq ($(BR2_PACKAGE_XORG7),y) PANGO_CONF_OPT += --with-x \ diff --git a/package/pciutils/pciutils.mk b/package/pciutils/pciutils.mk index 2b999dfb5..a7d999664 100644 --- a/package/pciutils/pciutils.mk +++ b/package/pciutils/pciutils.mk @@ -15,6 +15,7 @@ PCIUTILS_DNS=no PCIUTILS_SHARED=yes define PCIUTILS_CONFIGURE_CMDS + $(SED) 's/wget --no-timestamping/wget/' $(PCIUTILS_DIR)/update-pciids.sh $(SED) 's/uname -s/echo Linux/' \ -e 's/uname -r/echo $(LINUX_HEADERS_VERSION)/' \ $(PCIUTILS_DIR)/lib/configure @@ -32,7 +33,7 @@ define PCIUTILS_BUILD_CMDS SHARED=$(PCIUTILS_SHARED) \ ZLIB=$(PCIUTILS_ZLIB) \ DNS=$(PCIUTILS_DNS) \ - SHAREDIR=/usr/share/misc + PREFIX=/usr endef # Ditch install-lib if SHARED is an option in the future diff --git a/package/pcmanfm/Config.in b/package/pcmanfm/Config.in index 9a00bc0e8..c8b4debff 100644 --- a/package/pcmanfm/Config.in +++ b/package/pcmanfm/Config.in @@ -1,11 +1,15 @@ config BR2_PACKAGE_PCMANFM bool "pcmanfm" depends on BR2_PACKAGE_XORG7 + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_GAMIN select BR2_PACKAGE_STARTUP_NOTIFICATION - select BR2_PACKAGE_LIBGTK2 + depends on BR2_PACKAGE_LIBGTK2 help An extremly fast and lightweight file manager which features tabbed browsing and user-friendly interface. http://internap.dl.sourceforge.net/sourceforge/pcmanfm + +comment "pcmanfm requires a toolchain with WCHAR support" + depends on BR2_PACKAGE_XORG7 && !BR2_USE_WCHAR diff --git a/package/php/Config.ext b/package/php/Config.ext index 2fbd05e8a..0f5b98205 100644 --- a/package/php/Config.ext +++ b/package/php/Config.ext @@ -68,9 +68,13 @@ config BR2_PACKAGE_PHP_EXT_FTP config BR2_PACKAGE_PHP_EXT_GETTEXT bool "gettext" select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT + depends on BR2_USE_WCHAR help gettext support +comment "gettext support requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR + config BR2_PACKAGE_PHP_EXT_GMP bool "gmp" select BR2_PACKAGE_LIBGMP diff --git a/package/pkg-config/Config.in b/package/pkg-config/Config.in index 8ec805527..eae0a21f2 100644 --- a/package/pkg-config/Config.in +++ b/package/pkg-config/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_PKG_CONFIG bool "pkg-config" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 help pkg-config is a system for managing library compile/link @@ -8,3 +9,6 @@ config BR2_PACKAGE_PKG_CONFIG single tool. http://www.freedesktop.org/software/pkgconfig/ + +comment "pkg-config requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/psmisc/Config.in b/package/psmisc/Config.in index 31e982c64..a13820426 100644 --- a/package/psmisc/Config.in +++ b/package/psmisc/Config.in @@ -1,8 +1,8 @@ config BR2_PACKAGE_PSMISC bool "psmisc" select BR2_PACKAGE_NCURSES - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT - select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE help Helpful /proc related utilities such as pstree, fuser, and killall diff --git a/package/psmisc/psmisc.mk b/package/psmisc/psmisc.mk index b82883fa9..e4301da98 100644 --- a/package/psmisc/psmisc.mk +++ b/package/psmisc/psmisc.mk @@ -7,6 +7,6 @@ PSMISC_VERSION:=22.8 PSMISC_SOURCE:=psmisc-$(PSMISC_VERSION).tar.gz PSMISC_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/psmisc PSMISC_AUTORECONF:=NO -PSMISC_DEPENDENCIES:=ncurses $(if $(BR2_NEEDS_GETTEXT),gettext libintl) +PSMISC_DEPENDENCIES:=ncurses $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) $(eval $(call AUTOTARGETS,package,psmisc)) diff --git a/package/qt/Config.in b/package/qt/Config.in index 4371fc36e..b09d6429c 100644 --- a/package/qt/Config.in +++ b/package/qt/Config.in @@ -243,7 +243,7 @@ config BR2_PACKAGE_QT_EMB_PLATFORM default "x86_64" if BR2_x86_64 default "mips" if BR2_mips default "mips" if BR2_mipsel - default "ppc" if BR2_powerpc + default "powerpc" if BR2_powerpc # Not that I really believe these will work.. default "generic" if BR2_alpha default "generic" if BR2_chris @@ -263,13 +263,17 @@ endif config BR2_PACKAGE_QT_PHONON bool "Phonon Module" - select BR2_PACKAGE_GSTREAMER + depends on BR2_PACKAGE_GSTREAMER select BR2_PACKAGE_GST_PLUGINS_BASE + default y help Build the Phonon module. Support for different audio/video formats can be configured at the GStreamer package. If unsure, say n. +comment "Phonon module needs gstreamer" + depends on !BR2_PACKAGE_GSTREAMER + config BR2_PACKAGE_QT_PHONON_BACKEND bool "Phonon Module Backend" depends on BR2_PACKAGE_QT_PHONON diff --git a/package/shared-mime-info/Config.in b/package/shared-mime-info/Config.in index adc835ad0..b08c1fdaa 100644 --- a/package/shared-mime-info/Config.in +++ b/package/shared-mime-info/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_SHARED_MIME_INFO bool "shared-mime-info" + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_LIBXML2 help @@ -8,3 +9,6 @@ config BR2_PACKAGE_SHARED_MIME_INFO command used to extend it. http://freedesktop.org/wiki/Software/shared-mime-info + +comment "shared-mime-info requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR diff --git a/package/squashfs/Config.in b/package/squashfs/Config.in index 3080cc3ab..f83100f0f 100644 --- a/package/squashfs/Config.in +++ b/package/squashfs/Config.in @@ -1,6 +1,10 @@ config BR2_PACKAGE_SQUASHFS bool "squashfs" + depends on BR2_LARGEFILE help Tools to generate SquashFS filesystems. http://squashfs.sourceforge.net/ + +comment "squashfs requires a toolchain with LARGEFILE support" + depends on !BR2_LARGEFILE diff --git a/package/squashfs3/Config.in b/package/squashfs3/Config.in index 2f7033dd8..32912722f 100644 --- a/package/squashfs3/Config.in +++ b/package/squashfs3/Config.in @@ -1,7 +1,11 @@ config BR2_PACKAGE_SQUASHFS3 bool "squashfs3" depends on BR2_DEPRECATED + depends on BR2_LARGEFILE help Tools to generate SquashFS 3.x filesystems. http://squashfs.sourceforge.net/ + +comment "squashfs3 requires a toolchain with LARGEFILE support" + depends on BR2_DEPRECATED && !BR2_LARGEFILE diff --git a/package/sshfs/Config.in b/package/sshfs/Config.in index fc820a306..61d9bf3cc 100644 --- a/package/sshfs/Config.in +++ b/package/sshfs/Config.in @@ -2,11 +2,12 @@ config BR2_PACKAGE_SSHFS bool "sshfs (FUSE)" select BR2_PACKAGE_LIBFUSE select BR2_PACKAGE_LIBGLIB2 - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT - select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE depends on BR2_PACKAGE_OPENSSH depends on BR2_LARGEFILE + depends on BR2_USE_WCHAR # glib2 help FUSE makes it possible to implement a filesystem in a userspace program. Features include: simple yet comprehensive API, secure @@ -15,5 +16,5 @@ config BR2_PACKAGE_SSHFS http://fuse.sourceforge.net/sshfs.html -comment "sshfs requires a toolchain with LARGEFILE support" - depends on !BR2_LARGEFILE +comment "sshfs requires a toolchain with LARGEFILE and WCHAR support" + depends on !BR2_LARGEFILE || !BR2_USE_WCHAR diff --git a/package/sshfs/sshfs.mk b/package/sshfs/sshfs.mk index d15aa00c2..09f1e93ba 100644 --- a/package/sshfs/sshfs.mk +++ b/package/sshfs/sshfs.mk @@ -11,6 +11,6 @@ SSHFS_AUTORECONF:=NO SSHFS_INSTALL_STAGING:=NO SSHFS_INSTALL_TARGET:=YES -SSHFS_DEPENDENCIES = libglib2 libfuse $(if $(BR2_NEEDS_GETTEXT),gettext libintl) +SSHFS_DEPENDENCIES = libglib2 libfuse $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl) $(eval $(call AUTOTARGETS,package,sshfs)) diff --git a/package/sylpheed/Config.in b/package/sylpheed/Config.in index fe5aee664..16f03bef1 100644 --- a/package/sylpheed/Config.in +++ b/package/sylpheed/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_SYLPHEED bool "sylpheed" - select BR2_PACKAGE_LIBGTK2 + depends on BR2_PACKAGE_LIBGTK2 help lightweight and user-friendly e-mail client. diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in index 533ef698b..434dae952 100644 --- a/package/util-linux/Config.in +++ b/package/util-linux/Config.in @@ -1,7 +1,7 @@ config BR2_PACKAGE_UTIL-LINUX bool "util-linux" - select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT - select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE depends on BR2_INET_RPC help Various useful/essential Linux utilities. diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk index 6446d37b0..001ca7529 100644 --- a/package/util-linux/util-linux.mk +++ b/package/util-linux/util-linux.mk @@ -18,7 +18,7 @@ else UTIL-LINUX_SCHED_UTILS:=--disable-schedutils endif -ifeq ($(BR2_NEEDS_GETTEXT),y) +ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y) UTIL-LINUX_DEPENDENCIES += gettext libintl UTIL-LINUX_MAKE_OPT = LIBS=-lintl endif diff --git a/package/valgrind/Config.in b/package/valgrind/Config.in index d9113c9fb..db1bc3b19 100644 --- a/package/valgrind/Config.in +++ b/package/valgrind/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_VALGRIND bool "valgrind" - depends on BR2_i386 || BR2_powerpc || BR2_x86_64 + depends on BR2_i386 || BR2_x86_64 help Tool for debugging and profiling Linux programs. diff --git a/package/vsftpd/vsftpd-2.0.5-uclibc_lfs.patch b/package/vsftpd/vsftpd-2.0.7-uclibc_lfs.patch index ebd25ca78..610b782cd 100644 --- a/package/vsftpd/vsftpd-2.0.5-uclibc_lfs.patch +++ b/package/vsftpd/vsftpd-2.0.7-uclibc_lfs.patch @@ -5,7 +5,7 @@ diff -rdup vsftpd-2.0.5.orig/sysutil.c vsftpd-2.0.5/sysutil.c #include "utility.h" #include "tunables.h" -+#include "builddefs.h" ++#include <features.h> + +#if !defined __UCLIBC__ || (defined __UCLIBC__ && defined __UCLIBC_HAS_LFS__) /* Activate 64-bit file support on Linux/32bit plus others */ diff --git a/package/webkit/Config.in b/package/webkit/Config.in index 10c8b38ac..b0d69d787 100644 --- a/package/webkit/Config.in +++ b/package/webkit/Config.in @@ -2,7 +2,7 @@ config BR2_PACKAGE_WEBKIT bool "webkit" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR - select BR2_PACKAGE_LIBGTK2 + depends on BR2_PACKAGE_LIBGTK2 select BR2_PACKAGE_ICU select BR2_PACKAGE_CURL select BR2_PACKAGE_LIBXML2 @@ -21,22 +21,3 @@ config BR2_PACKAGE_WEBKIT comment "webkit requires a toolchain with C++ support and WCHAR enabled" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR - -if BR2_PACKAGE_WEBKIT - -choice - prompt "Rendering target" - default BR2_PACKAGE_WEBKIT_X - help - Selects which rendering target will be used. - -config BR2_PACKAGE_WEBKIT_X11 - bool "X11" - -config BR2_PACKAGE_WEBKIT_DIRECTFB - bool "DirectFB" - select BR2_PACKAGE_DIRECTFB - -endchoice - -endif diff --git a/package/webkit/webkit.mk b/package/webkit/webkit.mk index 2121f4b06..39debd362 100644 --- a/package/webkit/webkit.mk +++ b/package/webkit/webkit.mk @@ -14,12 +14,15 @@ WEBKIT_LIBTOOL_PATCH = NO WEBKIT_DEPENDENCIES = host-flex host-gperf icu curl libxml2 libxslt \ libgtk2 sqlite enchant libsoup -ifeq ($(BR2_PACKAGE_WEBKIT_X11),y) -WEBKIT_CONF_OPT = --with-target=x11 + +ifeq ($(BR2_PACKAGE_XORG7),y) + WEBKIT_CONF_OPT += --with-target=x11 + WEBKIT_DEPENDENCIES += xserver_xorg-server endif -ifeq ($(BR2_PACKAGE_WEBKIT_DIRECTFB),y) -WEBKIT_CONF_OPT = --with-target=directfb +ifeq ($(BR2_PACKAGE_DIRECTFB),y) + WEBKIT_CONF_OPT += --with-target=directfb + WEBKIT_DEPENDENCIES += directfb endif WEBKIT_CONF_OPT += --disable-video diff --git a/package/xstroke/Config.in b/package/xstroke/Config.in index dc904cb49..3d68b3e2f 100644 --- a/package/xstroke/Config.in +++ b/package/xstroke/Config.in @@ -1,8 +1,12 @@ config BR2_PACKAGE_XSTROKE bool "xstroke" depends on BR2_PACKAGE_XORG7 + depends on BR2_USE_WCHAR # glib2 select BR2_PACKAGE_DOCKER help Handwriting recognition for X http://avr32linux.org/twiki/pub/Main/XStroke + +comment "xstroke requires a toolchain with WCHAR support" + depends on BR2_PACKAGE_XORG7 && !BR2_USE_WCHAR |