2
1

Config.in 604 B

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_MYSQL
  2. bool "MySQL"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_USE_MMU # fork()
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. # Toolchain is not up to the task
  7. depends on !BR2_avr32
  8. select BR2_PACKAGE_NCURSES
  9. select BR2_PACKAGE_READLINE
  10. help
  11. The MySQL Open Source Database System
  12. http://www.mysql.com/
  13. if BR2_PACKAGE_MYSQL
  14. config BR2_PACKAGE_MYSQL_SERVER
  15. bool "MySQL server"
  16. help
  17. Install the MySQL server on the target.
  18. endif
  19. comment "MySQL needs a toolchain w/ C++, threads"
  20. depends on BR2_USE_MMU
  21. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS