Config.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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.
  9. http://www.python.org/
  10. comment "python3 requires a toolchain with WCHAR support"
  11. depends on !BR2_USE_WCHAR
  12. if BR2_PACKAGE_PYTHON3
  13. choice
  14. prompt "python3 module format to install"
  15. default BR2_PACKAGE_PYTHON3_PYC_ONLY
  16. help
  17. Select Python module format to install on target (py, pyc or both)
  18. config BR2_PACKAGE_PYTHON3_PY_ONLY
  19. bool ".py sources only"
  20. config BR2_PACKAGE_PYTHON3_PYC_ONLY
  21. bool ".pyc compiled sources only"
  22. config BR2_PACKAGE_PYTHON3_PY_PYC
  23. bool ".py sources and .pyc compiled"
  24. endchoice
  25. menu "core python3 modules"
  26. comment "The following modules are unusual or require extra libraries"
  27. config BR2_PACKAGE_PYTHON3_BZIP2
  28. select BR2_PACKAGE_BZIP2
  29. bool "bz2 module"
  30. help
  31. bzip2 module for Python3
  32. config BR2_PACKAGE_PYTHON3_CURSES
  33. select BR2_PACKAGE_NCURSES
  34. bool "curses module"
  35. help
  36. curses module for Python3.
  37. config BR2_PACKAGE_PYTHON3_PYEXPAT
  38. select BR2_PACKAGE_EXPAT
  39. bool "pyexpat"
  40. help
  41. pyexpat module for Python3.
  42. config BR2_PACKAGE_PYTHON3_READLINE
  43. select BR2_PACKAGE_READLINE
  44. bool "readline"
  45. help
  46. readline module for Python3 (required for command-line
  47. editing in the Python shell).
  48. config BR2_PACKAGE_PYTHON3_SSL
  49. select BR2_PACKAGE_OPENSSL
  50. bool "ssl"
  51. help
  52. _ssl module for Python3 (required for https in urllib etc).
  53. config BR2_PACKAGE_PYTHON3_SQLITE
  54. bool "sqlite module"
  55. select BR2_PACKAGE_SQLITE
  56. help
  57. SQLite database support
  58. config BR2_PACKAGE_PYTHON3_ZLIB
  59. bool "zlib module"
  60. select BR2_PACKAGE_ZLIB
  61. help
  62. zlib support in Python3
  63. endmenu
  64. endif