Config.in 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. config BR2_PACKAGE_PYTHON3
  2. bool "python3"
  3. depends on !BR2_PACKAGE_PYTHON
  4. depends on BR2_USE_WCHAR
  5. # uses fork()
  6. depends on BR2_USE_MMU
  7. depends on BR2_TOOLCHAIN_HAS_THREADS # libffi
  8. select BR2_PACKAGE_LIBFFI
  9. help
  10. The python language interpreter.
  11. http://www.python.org/
  12. comment "python3 needs a toolchain w/ wchar, threads"
  13. depends on BR2_USE_MMU
  14. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
  15. if BR2_PACKAGE_PYTHON3
  16. choice
  17. prompt "python3 module format to install"
  18. default BR2_PACKAGE_PYTHON3_PYC_ONLY
  19. help
  20. Select Python module format to install on target (py, pyc or both)
  21. config BR2_PACKAGE_PYTHON3_PY_ONLY
  22. bool ".py sources only"
  23. config BR2_PACKAGE_PYTHON3_PYC_ONLY
  24. bool ".pyc compiled sources only"
  25. config BR2_PACKAGE_PYTHON3_PY_PYC
  26. bool ".py sources and .pyc compiled"
  27. endchoice
  28. menu "core python3 modules"
  29. comment "The following modules are unusual or require extra libraries"
  30. config BR2_PACKAGE_PYTHON3_BZIP2
  31. select BR2_PACKAGE_BZIP2
  32. bool "bz2 module"
  33. help
  34. bzip2 module for Python3
  35. config BR2_PACKAGE_PYTHON3_CODECSCJK
  36. bool "codecscjk module"
  37. help
  38. Chinese/Japanese/Korean codecs module for Python (large).
  39. config BR2_PACKAGE_PYTHON3_CURSES
  40. select BR2_PACKAGE_NCURSES
  41. bool "curses module"
  42. help
  43. curses module for Python3.
  44. config BR2_PACKAGE_PYTHON3_DECIMAL
  45. select BR2_PACKAGE_MPDECIMAL
  46. bool "decimal module"
  47. help
  48. decimal module for Python3.
  49. config BR2_PACKAGE_PYTHON3_OSSAUDIODEV
  50. bool "ossaudiodev module"
  51. help
  52. ossaudiodev module for Python3.
  53. config BR2_PACKAGE_PYTHON3_READLINE
  54. select BR2_PACKAGE_READLINE
  55. bool "readline"
  56. help
  57. readline module for Python3 (required for command-line
  58. editing in the Python shell).
  59. config BR2_PACKAGE_PYTHON3_SSL
  60. select BR2_PACKAGE_OPENSSL
  61. bool "ssl"
  62. help
  63. _ssl module for Python3 (required for https in urllib etc).
  64. config BR2_PACKAGE_PYTHON3_UNICODEDATA
  65. bool "unicodedata module"
  66. default y
  67. help
  68. Unicode character database (used by stringprep module) (large).
  69. config BR2_PACKAGE_PYTHON3_SQLITE
  70. bool "sqlite module"
  71. select BR2_PACKAGE_SQLITE
  72. help
  73. SQLite database support
  74. config BR2_PACKAGE_PYTHON3_PYEXPAT
  75. select BR2_PACKAGE_EXPAT
  76. bool "xml module"
  77. help
  78. pyexpat and xml libraries for Python3.
  79. config BR2_PACKAGE_PYTHON3_ZLIB
  80. bool "zlib module"
  81. select BR2_PACKAGE_ZLIB
  82. help
  83. zlib support in Python3
  84. endmenu
  85. endif