Since commit 8708f3a23a ("package/mysql:
drop virtual package"), we no longer have mysql as a virtual package,
and therefore perl-dbd-mysql directly selects mariadb. As part of
that, the comments related to the dependencies have not been updated
accordingly. Fix that up.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 65fcceed89baf36a0ed9290aeb1f94bf94e5c921)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
18 lines
557 B
Plaintext
18 lines
557 B
Plaintext
config BR2_PACKAGE_PERL_DBD_MYSQL
|
|
bool "perl-dbd-mysql"
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_INSTALL_LIBSTDCPP # mariadb
|
|
depends on BR2_USE_MMU # mariadb
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # mariadb
|
|
select BR2_PACKAGE_MARIADB
|
|
select BR2_PACKAGE_PERL_DBI # runtime
|
|
help
|
|
A MySQL driver for the Perl5 Database Interface (DBI).
|
|
|
|
http://dbi.perl.org/
|
|
|
|
comment "perl-dbd-mysql needs a toolchain w/ dynamic library, C++, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS
|