diff options
author | Christopher McCrory <chrismcc@gmail.com> | 2018-08-20 04:55:03 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-09-11 15:39:10 +0200 |
commit | bb9d958444e5725094db7725988ece8c5304fc7f (patch) | |
tree | 0c97db5ea0305632037c2c95f0ad3cd2bcd2b6ab /package/perl-dbd-mysql/Config.in | |
parent | 50fe1383285b73074230feabdb2d2ca8e6a25cb3 (diff) | |
download | buildroot-bb9d958444e5725094db7725988ece8c5304fc7f.tar.gz buildroot-bb9d958444e5725094db7725988ece8c5304fc7f.zip |
perl-dbd-mysql: new package
Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
Acked-by: Francois Perrad <francois.perrad@gadz.org>
[Thomas: properly propagate BR2_PACKAGE_MYSQL dependencies]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/perl-dbd-mysql/Config.in')
-rw-r--r-- | package/perl-dbd-mysql/Config.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package/perl-dbd-mysql/Config.in b/package/perl-dbd-mysql/Config.in new file mode 100644 index 0000000000..f6cc3f99e4 --- /dev/null +++ b/package/perl-dbd-mysql/Config.in @@ -0,0 +1,17 @@ +config BR2_PACKAGE_PERL_DBD_MYSQL + bool "perl-dbd-mysql" + depends on !BR2_STATIC_LIBS + depends on BR2_INSTALL_LIBSTDCPP # mysql + depends on BR2_USE_MMU # mysql + depends on BR2_TOOLCHAIN_HAS_THREADS # mysql + select BR2_PACKAGE_PERL_DBI + select BR2_PACKAGE_MYSQL + 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 |