python: needs WCHAR support in toolchain

And hence, portage needs it as well.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2010-04-19 14:38:45 +02:00
parent fb951b9342
commit 7b3a6f0aab
3 changed files with 14 additions and 6 deletions

12
CHANGES
View File

@ -16,12 +16,12 @@
e2fsprogs, fbv, freetype, iperf, iptables, iw, less, e2fsprogs, fbv, freetype, iperf, iptables, iw, less,
libaio,libdrm, libgcrypt, libglib2, libpng, libxml2, matchbox, libaio,libdrm, libgcrypt, libglib2, libpng, libxml2, matchbox,
mdadm, memstat, mesa3d, mtd-utils, nano, openssl, pciutils, mdadm, memstat, mesa3d, mtd-utils, nano, openssl, pciutils,
php, pixman, pppd, pthread-stubs, qt, radvd, setserial, php, pixman, portage, pppd, pthread-stubs, python, qt, radvd,
squashfs, usb_modeswith, wget, xdriver_xf86-video-intel, setserial, squashfs, usb_modeswith, wget,
xkeyboard-config, xlib_libX11, xlib_libXfont, xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
xlib_libXfontcache, xlib_libXxf86misc, xlib_libpciaccess, xlib_libXfont, xlib_libXfontcache, xlib_libXxf86misc,
xproto_dri2proto, xproto_eviext, xproto_fontcacheproto, xlib_libpciaccess, xproto_dri2proto, xproto_eviext,
xproto_xf86miscproto xproto_fontcacheproto, xproto_xf86miscproto
Issues resolved (http://bugs.uclibc.org): Issues resolved (http://bugs.uclibc.org):

View File

@ -1,7 +1,11 @@
config BR2_PACKAGE_PORTAGE config BR2_PACKAGE_PORTAGE
bool "portage" bool "portage"
select BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON
depends on BR2_USE_WCHAR
help help
Portage, the Gentoo package management tool. Portage, the Gentoo package management tool.
http://www.gentoo.org/ http://www.gentoo.org/
comment "portage requires a toolchain with WCHAR support"
depends on !BR2_USE_WCHAR

View File

@ -1,10 +1,14 @@
config BR2_PACKAGE_PYTHON config BR2_PACKAGE_PYTHON
bool "python" bool "python"
depends on BR2_USE_WCHAR
help help
The python language interpreter. The python language interpreter.
http://www.python.org/ http://www.python.org/
comment "python requires a toolchain with WCHAR support"
depends on !BR2_USE_WCHAR
config BR2_PACKAGE_PYTHON_DEV config BR2_PACKAGE_PYTHON_DEV
depends on BR2_PACKAGE_PYTHON depends on BR2_PACKAGE_PYTHON
bool "development files on target" bool "development files on target"