2
1

Config.in 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. config BR2_PACKAGE_PYTHON
  2. bool "python"
  3. help
  4. The python language interpreter.
  5. http://www.python.org/
  6. config BR2_PACKAGE_PYTHON_DEV
  7. depends on BR2_PACKAGE_PYTHON
  8. bool "development files on target"
  9. help
  10. If enabled, development files (headers and static libpython) will be
  11. installed on the target.
  12. choice
  13. prompt "Module format to install"
  14. depends on BR2_PACKAGE_PYTHON
  15. default BR2_PACKAGE_PYTHON_PY_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. comment "The following modules are unusual or require extra libraries"
  26. depends on BR2_PACKAGE_PYTHON
  27. config BR2_PACKAGE_PYTHON_BSDDB
  28. depends on BR2_PACKAGE_PYTHON
  29. bool "bsddb module"
  30. help
  31. bsddb module for Python.
  32. config BR2_PACKAGE_PYTHON_CODECSCJK
  33. depends on BR2_PACKAGE_PYTHON
  34. bool "codecscjk module"
  35. default y
  36. help
  37. Chinese/Japanese/Korean codecs module for Python (large).
  38. config BR2_PACKAGE_PYTHON_CURSES
  39. depends on BR2_PACKAGE_PYTHON
  40. bool "curses module"
  41. help
  42. curses module for Python.
  43. config BR2_PACKAGE_PYTHON_GDBM
  44. depends on BR2_PACKAGE_PYTHON
  45. bool "gdbm module"
  46. help
  47. gdbm module for Python.
  48. config BR2_PACKAGE_PYTHON_NIS
  49. depends on BR2_PACKAGE_PYTHON
  50. bool "nis module"
  51. help
  52. nis module for Python.
  53. config BR2_PACKAGE_PYTHON_PYEXPAT
  54. depends on BR2_PACKAGE_PYTHON
  55. bool "pyexpat"
  56. help
  57. pyexpat module for Python.
  58. config BR2_PACKAGE_PYTHON_READLINE
  59. depends on BR2_PACKAGE_PYTHON
  60. bool "readline"
  61. help
  62. readline module for Python (required for command-line
  63. editing in the Python shell).
  64. config BR2_PACKAGE_PYTHON_SSL
  65. depends on BR2_PACKAGE_PYTHON
  66. bool "ssl"
  67. help
  68. _ssl module for Python (required for https in urllib etc).
  69. config BR2_PACKAGE_PYTHON_TKINTER
  70. depends on BR2_PACKAGE_PYTHON
  71. bool "tkinter module"
  72. help
  73. tkinter module for Python.
  74. config BR2_PACKAGE_PYTHON_UNICODEDATA
  75. depends on BR2_PACKAGE_PYTHON
  76. bool "unicodedata module"
  77. default y
  78. help
  79. Unicode character database (used by stringprep module) (large).