Config.in 2.3 KB

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