Config.in 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. comment "python3 needs a toolchain w/ wchar, threads, dynamic library"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
  4. config BR2_PACKAGE_PYTHON3
  5. bool "python3"
  6. depends on !BR2_PACKAGE_PYTHON
  7. depends on BR2_USE_WCHAR
  8. # uses fork()
  9. depends on BR2_USE_MMU
  10. depends on BR2_TOOLCHAIN_HAS_THREADS # libffi
  11. depends on !BR2_STATIC_LIBS
  12. select BR2_PACKAGE_LIBFFI
  13. help
  14. The python language interpreter.
  15. http://www.python.org/
  16. 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
  22. both)
  23. config BR2_PACKAGE_PYTHON3_PY_ONLY
  24. bool ".py sources only"
  25. config BR2_PACKAGE_PYTHON3_PYC_ONLY
  26. bool ".pyc compiled sources only"
  27. config BR2_PACKAGE_PYTHON3_PY_PYC
  28. bool ".py sources and .pyc compiled"
  29. endchoice
  30. menu "core python3 modules"
  31. comment "The following modules are unusual or require extra libraries"
  32. config BR2_PACKAGE_PYTHON3_BZIP2
  33. bool "bz2 module"
  34. select BR2_PACKAGE_BZIP2
  35. help
  36. bzip2 module for Python3
  37. config BR2_PACKAGE_PYTHON3_CODECSCJK
  38. bool "codecscjk module"
  39. help
  40. Chinese/Japanese/Korean codecs module for Python (large).
  41. config BR2_PACKAGE_PYTHON3_CURSES
  42. bool "curses module"
  43. select BR2_PACKAGE_NCURSES
  44. help
  45. curses module for Python3.
  46. config BR2_PACKAGE_PYTHON3_DECIMAL
  47. bool "decimal module"
  48. select BR2_PACKAGE_MPDECIMAL
  49. help
  50. decimal module for Python3.
  51. config BR2_PACKAGE_PYTHON3_OSSAUDIODEV
  52. bool "ossaudiodev module"
  53. help
  54. ossaudiodev module for Python3.
  55. config BR2_PACKAGE_PYTHON3_READLINE
  56. bool "readline"
  57. select BR2_PACKAGE_READLINE
  58. help
  59. readline module for Python3 (required for command-line
  60. editing in the Python shell).
  61. config BR2_PACKAGE_PYTHON3_SSL
  62. bool "ssl"
  63. select BR2_PACKAGE_OPENSSL
  64. help
  65. _ssl module for Python3 (required for https in urllib etc).
  66. config BR2_PACKAGE_PYTHON3_UNICODEDATA
  67. bool "unicodedata module"
  68. default y
  69. help
  70. Unicode character database (used by stringprep module)
  71. (large).
  72. config BR2_PACKAGE_PYTHON3_UUID
  73. bool "uuid module"
  74. select BR2_PACKAGE_UTIL_LINUX
  75. select BR2_PACKAGE_UTIL_LINUX_LIBUUID
  76. help
  77. This module provides immutable UUID objects (the UUID class)
  78. and the functions uuid1(), uuid3(), uuid4(), uuid5() for
  79. generating version 1, 3, 4, and 5 UUIDs as specified in RFC
  80. 4122.
  81. config BR2_PACKAGE_PYTHON3_SQLITE
  82. bool "sqlite module"
  83. select BR2_PACKAGE_SQLITE
  84. help
  85. SQLite database support
  86. config BR2_PACKAGE_PYTHON3_PYEXPAT
  87. bool "xml module"
  88. select BR2_PACKAGE_EXPAT
  89. help
  90. pyexpat and xml libraries for Python3.
  91. config BR2_PACKAGE_PYTHON3_XZ
  92. bool "xz module"
  93. select BR2_PACKAGE_XZ
  94. help
  95. xz (a.k.a lzma) module for Python3
  96. config BR2_PACKAGE_PYTHON3_ZLIB
  97. bool "zlib module"
  98. select BR2_PACKAGE_ZLIB
  99. help
  100. zlib support in Python3
  101. endmenu
  102. endif