Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config BR2_PACKAGE_MARIADB
  2. bool "mariadb"
  3. depends on BR2_INSTALL_LIBSTDCPP # fmt
  4. depends on !BR2_STATIC_LIBS
  5. depends on BR2_USE_MMU # fork()
  6. depends on BR2_TOOLCHAIN_HAS_THREADS
  7. depends on BR2_TOOLCHAIN_HAS_ATOMIC || BR2_TOOLCHAIN_HAS_SYNC_8
  8. depends on BR2_USE_WCHAR # fmt
  9. select BR2_PACKAGE_LIBAIO
  10. select BR2_PACKAGE_LIBXML2
  11. select BR2_PACKAGE_FMT
  12. select BR2_PACKAGE_NCURSES
  13. select BR2_PACKAGE_OPENSSL
  14. select BR2_PACKAGE_PCRE2
  15. help
  16. MariaDB is one of the most popular database servers in the
  17. world. It's made by the original developers of MySQL and
  18. guaranteed to stay open source.
  19. http://www.mariadb.org/
  20. comment "mariadb needs a toolchain w/ dynamic library, C++, threads, wchar"
  21. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
  22. || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
  23. depends on BR2_TOOLCHAIN_HAS_ATOMIC || BR2_TOOLCHAIN_HAS_SYNC_8
  24. if BR2_PACKAGE_MARIADB
  25. config BR2_PACKAGE_MARIADB_SERVER
  26. bool "mariadb server"
  27. help
  28. Install the mariadb server on the target.
  29. config BR2_PACKAGE_MARIADB_SERVER_EMBEDDED
  30. bool "mariadb embedded server"
  31. depends on BR2_PACKAGE_MARIADB_SERVER
  32. help
  33. Install the mariadb embedded server on the target.
  34. endif