Commit 06c82128 authored by Marcelo Gutiérrez(UTN/FRH)'s avatar Marcelo Gutiérrez(UTN/FRH) Committed by Peter Korsgaard
Browse files

Rename MySQL client package



MySQL client package has been renamed to MySQL.

[Peter: fixup help text]
Signed-off-by: default avatarMarcelo Gutiérrez <kuyurix@gmail.com>
Reviewed-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 6a471a1c
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -125,6 +125,13 @@ config BR2_PACKAGE_LIBNFC_LLCP
	  to 'libllcp'. We have added a new package for 'libllcp' and bumped
	  the version at the same time.

config BR2_PACKAGE_MYSQL_CLIENT
	bool "MySQL client renamed to MySQL"
	select BR2_LEGACY
	select BR2_PACKAGE_MYSQL
	help
	  The option has been renamed BR2_PACKAGE_MYSQL

config BR2_PACKAGE_SQUASHFS3
	bool "squashfs3 has been removed"
	select BR2_LEGACY
+1 −1
Original line number Diff line number Diff line
@@ -502,7 +502,7 @@ menu "Database"
source "package/berkeleydb/Config.in"
source "package/cppdb/Config.in"
source "package/gdbm/Config.in"
source "package/mysql_client/Config.in"
source "package/mysql/Config.in"
source "package/redis/Config.in"
source "package/sqlcipher/Config.in"
source "package/sqlite/Config.in"
+6 −4
Original line number Diff line number Diff line
config BR2_PACKAGE_MYSQL_CLIENT
	bool "MySQL client"
config BR2_PACKAGE_MYSQL
	bool "MySQL"
	depends on BR2_INSTALL_LIBSTDCPP
	depends on BR2_USE_MMU # fork()
	depends on BR2_TOOLCHAIN_HAS_THREADS
	select BR2_PACKAGE_NCURSES
	select BR2_PACKAGE_READLINE
	help
	  MySQL client
	  The MySQL Open Source Database System

comment "MySQL client needs a toolchain w/ C++, threads"
	  http://www.mysql.com/

comment "MySQL needs a toolchain w/ C++, threads"
	depends on BR2_USE_MMU
	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
Loading