python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / mysql / Config.in
blob69ad586548e57784b6ed47b3f3580fa904508bbf
1 config BR2_PACKAGE_MYSQL
2         bool "mysql support"
3         depends on BR2_INSTALL_LIBSTDCPP
4         depends on BR2_USE_MMU # fork()
5         depends on BR2_TOOLCHAIN_HAS_THREADS
6         help
7           Select the desired mysql provider.
9 if BR2_PACKAGE_MYSQL
11 choice
12         prompt "mysql variant"
13         default BR2_PACKAGE_ORACLE_MYSQL
14         help
15           Select either the oracle mysql server or the mariadb server
17 config BR2_PACKAGE_MARIADB
18         bool "mariadb"
19         depends on BR2_PACKAGE_LIBAIO_ARCH_SUPPORTS
20         select BR2_PACKAGE_LIBAIO
21         select BR2_PACKAGE_LIBXML2
22         select BR2_PACKAGE_NCURSES
23         select BR2_PACKAGE_OPENSSL
24         select BR2_PACKAGE_READLINE
25         select BR2_PACKAGE_HAS_MYSQL
26         help
27           MariaDB is one of the most popular database servers in the world.
28           It's made by the original developers of MySQL and guaranteed to
29           stay open source.
31           http://www.mariadb.org/
33 config BR2_PACKAGE_ORACLE_MYSQL
34         bool "oracle mysql"
35         select BR2_PACKAGE_NCURSES
36         select BR2_PACKAGE_READLINE
37         select BR2_PACKAGE_HAS_MYSQL
38         help
39           The MySQL Open Source Database System
41           http://www.mysql.com/
43 endchoice
45 if BR2_PACKAGE_MARIADB
47 config BR2_PACKAGE_MARIADB_SERVER
48         bool "mariadb server"
49         help
50           Install the mariadb server on the target.
52 endif
54 if BR2_PACKAGE_ORACLE_MYSQL
56 config BR2_PACKAGE_ORACLE_MYSQL_SERVER
57         bool "oracle mysql server"
58         help
59           Install the MySQL server on the target.
61 endif
63 config BR2_PACKAGE_HAS_MYSQL
64         bool
66 config BR2_PACKAGE_PROVIDES_MYSQL
67         string
68         default "mariadb"      if BR2_PACKAGE_MARIADB
69         default "oracle-mysql" if BR2_PACKAGE_ORACLE_MYSQL
71 endif
73 comment "mysql needs a toolchain w/ C++, threads"
74         depends on BR2_USE_MMU
75         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS