libnetfilter_cthelper: add patch for uclinux tuple
[buildroot-gz.git] / package / python3 / Config.in
blob4a70b5e5c362cee2b6d7b67d0b8832b7a79bbe94
1 config BR2_PACKAGE_PYTHON3
2         bool "python3"
3         depends on BR2_USE_WCHAR
4         # uses fork()
5         depends on BR2_USE_MMU
6         select BR2_PACKAGE_LIBFFI
7         help
8           The python language interpreter.
10           http://www.python.org/
12 comment "python3 requires a toolchain with WCHAR support"
13         depends on !BR2_USE_WCHAR
15 if BR2_PACKAGE_PYTHON3
17 choice
18         prompt "python3 module format to install"
19         default BR2_PACKAGE_PYTHON3_PYC_ONLY
20         help
21           Select Python module format to install on target (py, pyc or both)
23 config BR2_PACKAGE_PYTHON3_PY_ONLY
24         bool ".py sources only"
26 config BR2_PACKAGE_PYTHON3_PYC_ONLY
27         bool ".pyc compiled sources only"
29 config BR2_PACKAGE_PYTHON3_PY_PYC
30         bool ".py sources and .pyc compiled"
32 endchoice
34 menu "core python3 modules"
36 comment "The following modules are unusual or require extra libraries"
38 config BR2_PACKAGE_PYTHON3_BZIP2
39         select BR2_PACKAGE_BZIP2
40         bool "bz2 module"
41         help
42           bzip2 module for Python3
44 config BR2_PACKAGE_PYTHON3_CODECSCJK
45         bool "codecscjk module"
46         help
47           Chinese/Japanese/Korean codecs module for Python (large).
49 config BR2_PACKAGE_PYTHON3_CURSES
50         select BR2_PACKAGE_NCURSES
51         bool "curses module"
52         help
53           curses module for Python3.
55 config BR2_PACKAGE_PYTHON3_PYEXPAT
56         select BR2_PACKAGE_EXPAT
57         bool "pyexpat"
58         help
59           pyexpat module for Python3.
61 config BR2_PACKAGE_PYTHON3_READLINE
62         select BR2_PACKAGE_READLINE
63         bool "readline"
64         help
65           readline module for Python3 (required for command-line
66           editing in the Python shell).
68 config BR2_PACKAGE_PYTHON3_SSL
69         select BR2_PACKAGE_OPENSSL
70         bool "ssl"
71         help
72           _ssl module for Python3 (required for https in urllib etc).
74 config BR2_PACKAGE_PYTHON3_UNICODEDATA
75         bool "unicodedata module"
76         default y
77         help
78           Unicode character database (used by stringprep module) (large).
80 config BR2_PACKAGE_PYTHON3_SQLITE
81         bool "sqlite module"
82         select BR2_PACKAGE_SQLITE
83         help
84           SQLite database support
86 config BR2_PACKAGE_PYTHON3_ZLIB
87         bool "zlib module"
88         select BR2_PACKAGE_ZLIB
89         help
90           zlib support in Python3
92 endmenu
94 endif