5a3f78c919
Until now, libaio contained some architecture specific code to do the syscalls. In fact, it contained a generic variant of the code called syscall-generic.h, but it was showing a warning when it was used, as if it was "not safe". Consequently, in Buildroot, we had chosen to support libaio only on a the subset of architectures that were explicitly handled by libaio. However, between 0.3.110 and 0.3.111, libaio upstream entirely dropped the architecture-specific code: https://pagure.io/libaio/c/97fd3fc0195500e616e34047cba4846164c411d9?branch=master Consequently, in this patch, we: - Bump libaio to 0.3.111. - Switch to the new upstream at https://pagure.io/libaio/. - Drop the 0001-arches.patch patch, which was adding support for MIPS, since we no longer need architecture-specific code. - Update the remaining patches, and Git-format one of them which wasn't Git-formatted. - Drop the BR2_PACKAGE_LIBAIO_ARCH_SUPPORTS option and all its uses. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
79 lines
1.7 KiB
Plaintext
79 lines
1.7 KiB
Plaintext
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"
|
|
default BR2_PACKAGE_ORACLE_MYSQL
|
|
help
|
|
Select either the oracle mysql server or the mariadb server
|
|
|
|
config BR2_PACKAGE_MARIADB
|
|
bool "mariadb"
|
|
depends on !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_LIBAIO
|
|
select BR2_PACKAGE_LIBXML2
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_READLINE
|
|
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
|
|
guaranteed to stay open source.
|
|
|
|
http://www.mariadb.org/
|
|
|
|
comment "mariadb needs a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_ORACLE_MYSQL
|
|
bool "oracle mysql"
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_READLINE
|
|
select BR2_PACKAGE_HAS_MYSQL
|
|
help
|
|
The MySQL Open Source Database System
|
|
|
|
http://www.mysql.com/
|
|
|
|
endchoice
|
|
|
|
if BR2_PACKAGE_MARIADB
|
|
|
|
config BR2_PACKAGE_MARIADB_SERVER
|
|
bool "mariadb server"
|
|
help
|
|
Install the mariadb server on the target.
|
|
|
|
endif
|
|
|
|
if BR2_PACKAGE_ORACLE_MYSQL
|
|
|
|
config BR2_PACKAGE_ORACLE_MYSQL_SERVER
|
|
bool "oracle mysql server"
|
|
help
|
|
Install the MySQL server on the target.
|
|
|
|
endif
|
|
|
|
config BR2_PACKAGE_HAS_MYSQL
|
|
bool
|
|
|
|
config BR2_PACKAGE_PROVIDES_MYSQL
|
|
string
|
|
default "mariadb" if BR2_PACKAGE_MARIADB
|
|
default "oracle-mysql" if BR2_PACKAGE_ORACLE_MYSQL
|
|
|
|
endif
|
|
|
|
comment "mysql needs a toolchain w/ C++, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|