Config.in 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. config BR2_PACKAGE_PYTHON
  2. bool "python"
  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.
  9. http://www.python.org/
  10. comment "python requires a toolchain with WCHAR support"
  11. depends on !BR2_USE_WCHAR
  12. if BR2_PACKAGE_PYTHON
  13. choice
  14. prompt "python module format to install"
  15. default BR2_PACKAGE_PYTHON_PYC_ONLY
  16. help
  17. Select Python module format to install on target (py, pyc or both)
  18. config BR2_PACKAGE_PYTHON_PY_ONLY
  19. bool ".py sources only"
  20. config BR2_PACKAGE_PYTHON_PYC_ONLY
  21. bool ".pyc compiled sources only"
  22. config BR2_PACKAGE_PYTHON_PY_PYC
  23. bool ".py sources and .pyc compiled"
  24. endchoice
  25. menu "core python modules"
  26. comment "The following modules are unusual or require extra libraries"
  27. config BR2_PACKAGE_PYTHON_BZIP2
  28. select BR2_PACKAGE_BZIP2
  29. bool "bzip2 module"
  30. help
  31. bzip2 module for Python
  32. config BR2_PACKAGE_PYTHON_BSDDB
  33. select BR2_PACKAGE_BERKELEYDB
  34. bool "bsddb module"
  35. help
  36. bsddb module for Python.
  37. config BR2_PACKAGE_PYTHON_CODECSCJK
  38. bool "codecscjk module"
  39. help
  40. Chinese/Japanese/Korean codecs module for Python (large).
  41. config BR2_PACKAGE_PYTHON_CURSES
  42. select BR2_PACKAGE_NCURSES
  43. bool "curses module"
  44. help
  45. curses module for Python.
  46. config BR2_PACKAGE_PYTHON_PYEXPAT
  47. select BR2_PACKAGE_EXPAT
  48. bool "pyexpat"
  49. help
  50. pyexpat module for Python.
  51. config BR2_PACKAGE_PYTHON_READLINE
  52. select BR2_PACKAGE_READLINE
  53. bool "readline"
  54. help
  55. readline module for Python (required for command-line
  56. editing in the Python shell).
  57. config BR2_PACKAGE_PYTHON_SSL
  58. select BR2_PACKAGE_OPENSSL
  59. bool "ssl"
  60. help
  61. _ssl module for Python (required for https in urllib etc).
  62. config BR2_PACKAGE_PYTHON_UNICODEDATA
  63. bool "unicodedata module"
  64. default y
  65. help
  66. Unicode character database (used by stringprep module) (large).
  67. config BR2_PACKAGE_PYTHON_SQLITE
  68. bool "sqlite module"
  69. select BR2_PACKAGE_SQLITE
  70. help
  71. SQLite database support
  72. config BR2_PACKAGE_PYTHON_ZLIB
  73. bool "zlib module"
  74. select BR2_PACKAGE_ZLIB
  75. help
  76. zlib support in Python
  77. endmenu
  78. endif