Config.in 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. select BR2_PACKAGE_BERKELEYDB
  30. bool "bsddb module"
  31. help
  32. bsddb module for Python.
  33. config BR2_PACKAGE_PYTHON_CODECSCJK
  34. depends on BR2_PACKAGE_PYTHON
  35. bool "codecscjk module"
  36. default y
  37. help
  38. Chinese/Japanese/Korean codecs module for Python (large).
  39. config BR2_PACKAGE_PYTHON_CURSES
  40. depends on BR2_PACKAGE_PYTHON
  41. select BR2_PACKAGE_NCURSES
  42. bool "curses module"
  43. help
  44. curses module for Python.
  45. # config BR2_PACKAGE_PYTHON_GDBM
  46. # depends on BR2_PACKAGE_PYTHON
  47. # bool "gdbm module"
  48. # help
  49. # gdbm module for Python.
  50. # config BR2_PACKAGE_PYTHON_NIS
  51. # depends on BR2_PACKAGE_PYTHON
  52. # bool "nis module"
  53. # help
  54. # nis module for Python.
  55. config BR2_PACKAGE_PYTHON_PYEXPAT
  56. depends on BR2_PACKAGE_PYTHON
  57. select BR2_PACKAGE_EXPAT
  58. bool "pyexpat"
  59. help
  60. pyexpat module for Python.
  61. config BR2_PACKAGE_PYTHON_READLINE
  62. depends on BR2_PACKAGE_PYTHON
  63. select BR2_PACKAGE_READLINE
  64. bool "readline"
  65. help
  66. readline module for Python (required for command-line
  67. editing in the Python shell).
  68. config BR2_PACKAGE_PYTHON_SSL
  69. depends on BR2_PACKAGE_PYTHON
  70. select BR2_PACKAGE_OPENSSL
  71. bool "ssl"
  72. help
  73. _ssl module for Python (required for https in urllib etc).
  74. config BR2_PACKAGE_PYTHON_TKINTER
  75. depends on BR2_PACKAGE_PYTHON
  76. select BR2_PACKAGE_TCL
  77. bool "tkinter module"
  78. help
  79. tkinter module for Python.
  80. config BR2_PACKAGE_PYTHON_UNICODEDATA
  81. depends on BR2_PACKAGE_PYTHON
  82. bool "unicodedata module"
  83. default y
  84. help
  85. Unicode character database (used by stringprep module) (large).