|
@@ -1,22 +1,9 @@
|
|
|
-config BR2_PACKAGE_MYSQL
|
|
|
- bool "mysql support"
|
|
|
- depends on BR2_INSTALL_LIBSTDCPP
|
|
|
- depends on BR2_USE_MMU # fork()
|
|
|
- depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
- help
|
|
|
- Select the desired mysql provider.
|
|
|
-
|
|
|
-if BR2_PACKAGE_MYSQL
|
|
|
-
|
|
|
-choice
|
|
|
- prompt "mysql variant"
|
|
|
- help
|
|
|
- Select either the oracle mysql server or the mariadb server
|
|
|
-
|
|
|
config BR2_PACKAGE_MARIADB
|
|
|
bool "mariadb"
|
|
|
depends on BR2_INSTALL_LIBSTDCPP # fmt
|
|
|
depends on !BR2_STATIC_LIBS
|
|
|
+ depends on BR2_USE_MMU # fork()
|
|
|
+ depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC || BR2_TOOLCHAIN_HAS_SYNC_8
|
|
|
depends on BR2_USE_WCHAR # fmt
|
|
|
select BR2_PACKAGE_LIBAIO
|
|
@@ -25,7 +12,6 @@ config BR2_PACKAGE_MARIADB
|
|
|
select BR2_PACKAGE_NCURSES
|
|
|
select BR2_PACKAGE_OPENSSL
|
|
|
select BR2_PACKAGE_PCRE2
|
|
|
- select BR2_PACKAGE_HAS_MYSQL
|
|
|
help
|
|
|
MariaDB is one of the most popular database servers in the
|
|
|
world. It's made by the original developers of MySQL and
|
|
@@ -33,13 +19,11 @@ config BR2_PACKAGE_MARIADB
|
|
|
|
|
|
http://www.mariadb.org/
|
|
|
|
|
|
-comment "mariadb needs a toolchain w/ dynamic library, C++, wchar"
|
|
|
+comment "mariadb needs a toolchain w/ dynamic library, C++, threads, wchar"
|
|
|
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
|
|
|
- || !BR2_USE_WCHAR
|
|
|
+ || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC || BR2_TOOLCHAIN_HAS_SYNC_8
|
|
|
|
|
|
-endchoice
|
|
|
-
|
|
|
if BR2_PACKAGE_MARIADB
|
|
|
|
|
|
config BR2_PACKAGE_MARIADB_SERVER
|
|
@@ -54,16 +38,3 @@ config BR2_PACKAGE_MARIADB_SERVER_EMBEDDED
|
|
|
Install the mariadb embedded server on the target.
|
|
|
|
|
|
endif
|
|
|
-
|
|
|
-config BR2_PACKAGE_HAS_MYSQL
|
|
|
- bool
|
|
|
-
|
|
|
-config BR2_PACKAGE_PROVIDES_MYSQL
|
|
|
- string
|
|
|
- default "mariadb" if BR2_PACKAGE_MARIADB
|
|
|
-
|
|
|
-endif
|
|
|
-
|
|
|
-comment "mysql needs a toolchain w/ C++, threads"
|
|
|
- depends on BR2_USE_MMU
|
|
|
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|