Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
  15. select BR2_PACKAGE_PCRE2
  16. help
  17. MariaDB is one of the most popular database servers in the
  18. world. It's made by the original developers of MySQL and
  19. guaranteed to stay open source.
  20. http://www.mariadb.org/
  21. comment "mariadb needs a toolchain w/ dynamic library, C++, threads, wchar"
  22. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
  23. || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
  24. depends on BR2_TOOLCHAIN_HAS_ATOMIC || BR2_TOOLCHAIN_HAS_SYNC_8
  25. if BR2_PACKAGE_MARIADB
  26. config BR2_PACKAGE_MARIADB_SERVER
  27. bool "mariadb server"
  28. help
  29. Install the mariadb server on the target.
  30. config BR2_PACKAGE_MARIADB_SERVER_EMBEDDED
  31. bool "mariadb embedded server"
  32. depends on BR2_PACKAGE_MARIADB_SERVER
  33. help
  34. Install the mariadb embedded server on the target.
  35. endif