Config.in 628 B

1234567891011121314151617181920212223242526272829
  1. comment "lcdproc needs a toolchain w/ dynamic library"
  2. depends on BR2_STATIC_LIBS
  3. config BR2_PACKAGE_LCDPROC
  4. bool "lcdproc"
  5. depends on BR2_USE_MMU # fork()
  6. depends on !BR2_STATIC_LIBS
  7. select BR2_PACKAGE_FREETYPE
  8. select BR2_PACKAGE_NCURSES
  9. select BR2_PACKAGE_ZLIB
  10. help
  11. LCD display driver daemon and clients
  12. http://lcdproc.org/
  13. if BR2_PACKAGE_LCDPROC
  14. config BR2_PACKAGE_LCDPROC_DRIVERS
  15. string "List of drivers to build"
  16. default "all"
  17. help
  18. Specify a comma-separated list of lcdproc drivers to be built
  19. config BR2_PACKAGE_LCDPROC_MENUS
  20. bool "Menu support"
  21. help
  22. Enable support for lcdproc menus
  23. endif