Commit b730010c authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

package: gettext needs WCHAR support



gettext needs WCHAR support in the toolchain, and as libglib2 depends on
gettext and lots of stuff depends on libglib2, quite a lot of packages
needs to have their dependencies adjusted.

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 0f4d293c
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
@@ -2,12 +2,15 @@

	Fixes all over the tree.

	Updated/fixed packages: aumix, avahi, busybox, cairo, cdrkit,
	fltk, gettext, gmpc, grep, hal, iconv, icu, libcgicc, libglib2,
	libidn, libmpd, libpcap, libsoup, lmbench, ltrace, lvm2, make,
	metacity, mtd-utils, mutt, netsnmp, ntp, pango, pciutils,
	pcmanfm, php, psmisc, qt, samba, sshfs, startup-notification,
	swfdec, sylpheed, uemacs, util-linux, vpnc, webkit
	Updated/fixed packages: aumix, atk, avahi, busybox, cairo,
	cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
	gettext, gmpc, gob2, grep, gstreamer, gvfs, hal, iconv, icu,
	libcgicc, libglade, libglib2, libgtk2, libidn, libmms, libmpd,
	libpcap, libsoup, lmbench, ltrace, lvm2, make,
	metacity, mtd-utils, mutt, nbd, netsnmp, ntp, pango, pciutils,
	pcmanfm, php, pkg-config, psmisc, qt, samba, shared-mime-info,
	sshfs, startup-notification, swfdec, sylpheed, uemacs,
	util-linux, vpnc, webkit, xstroke

	Issues resolved (http://bugs.uclibc.org):

+4 −0
Original line number Diff line number Diff line
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
+4 −0
Original line number Diff line number Diff line
@@ -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
+4 −0
Original line number Diff line number Diff line
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
+4 −0
Original line number Diff line number Diff line
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
Loading