diff options
| author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-05-27 07:02:30 +0200 | 
|---|---|---|
| committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-05-27 07:02:57 +0200 | 
| commit | 8afc339757774eb1f33e4ccaaa6fea389b5950bc (patch) | |
| tree | f67bc00f7ad4fa4fd7d2a8393ab9d5e4f1b6b220 /package/python | |
| parent | 0f157e0cb9553f4ffcd749265e8cb748cadc12bd (diff) | |
| download | buildroot-novena-8afc339757774eb1f33e4ccaaa6fea389b5950bc.tar.gz buildroot-novena-8afc339757774eb1f33e4ccaaa6fea389b5950bc.zip | |
python: fix kconfig dependencies for extension modules
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/python')
| -rw-r--r-- | package/python/Config.in | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/package/python/Config.in b/package/python/Config.in index 63aeb3156..4b1735e36 100644 --- a/package/python/Config.in +++ b/package/python/Config.in @@ -35,6 +35,7 @@ comment "The following modules are unusual or require extra libraries"  config BR2_PACKAGE_PYTHON_BSDDB  	depends on BR2_PACKAGE_PYTHON +	select BR2_PACKAGE_BERKELEYDB  	bool "bsddb module"  	help  	  bsddb module for Python. @@ -48,6 +49,7 @@ config BR2_PACKAGE_PYTHON_CODECSCJK  config BR2_PACKAGE_PYTHON_CURSES  	depends on BR2_PACKAGE_PYTHON +	select BR2_PACKAGE_NCURSES  	bool "curses module"  	help  	  curses module for Python. @@ -66,12 +68,14 @@ config BR2_PACKAGE_PYTHON_NIS  config BR2_PACKAGE_PYTHON_PYEXPAT  	depends on BR2_PACKAGE_PYTHON +	select BR2_PACKAGE_EXPAT  	bool "pyexpat"  	help  	  pyexpat module for Python.  config BR2_PACKAGE_PYTHON_READLINE  	depends on BR2_PACKAGE_PYTHON +	select BR2_PACKAGE_READLINE  	bool "readline"  	help  	  readline module for Python (required for command-line @@ -79,12 +83,14 @@ config BR2_PACKAGE_PYTHON_READLINE  config BR2_PACKAGE_PYTHON_SSL  	depends on BR2_PACKAGE_PYTHON +	select BR2_PACKAGE_OPENSSL  	bool "ssl"  	help  	  _ssl module for Python (required for https in urllib etc).  config BR2_PACKAGE_PYTHON_TKINTER  	depends on BR2_PACKAGE_PYTHON +	select BR2_PACKAGE_TCL  	bool "tkinter module"  	help  	  tkinter module for Python. | 
