kumquat-buildroot/package/python3/Config.in.host
Charles Hardin cbd06b6ddd package/python3: add option to support curses in host-python
This can be relevant for host scripts that use Python.

Signed-off-by: Charles Hardin <ckhardin@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-12-24 18:51:35 +01:00

27 lines
480 B
Plaintext

config BR2_PACKAGE_HOST_PYTHON3
bool "host python3"
help
The python language interpreter. Host package.
http://www.python.org/
if BR2_PACKAGE_HOST_PYTHON3
config BR2_PACKAGE_HOST_PYTHON3_BZIP2
bool "bzip2"
help
bz2 module for host Python3.
config BR2_PACKAGE_HOST_PYTHON3_CURSES
bool "curses"
help
curses module for host Python3.
config BR2_PACKAGE_HOST_PYTHON3_SSL
bool "ssl"
select BR2_PACKAGE_HOST_OPENSSL
help
_ssl module for host Python3.
endif