mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 20:51:57 +02:00
After mariadb upgrade to 10.3.13, there comes
below do_compile failure for libdbd-mysql-perl:
| dbdimp.c: In function 'mysql_dr_connect':
| dbdimp.c:2000:13: error: 'MYSQL' {aka 'struct st_mysql'} has no member named 'reconnect'
| result->reconnect=0;
Backport a patch to fix it.
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
27 lines
1.0 KiB
BlitzBasic
27 lines
1.0 KiB
BlitzBasic
SUMMARY = "A Perl DBI driver for MySQL"
|
|
DESCRIPTION = "DBD::mysql is the Perl5 Database Interface driver for \
|
|
the MySQL database. In other words: DBD::mysql is an interface between \
|
|
the Perl programming language and the MySQL programming API that comes \
|
|
with the MySQL relational database management system. Most functions \
|
|
provided by this programming API are supported. Some rarely used \
|
|
functions are missing, mainly because no-one ever requested them. \
|
|
"
|
|
HOMEPAGE = "http://search.cpan.org/~michielb/DBD-mysql-4.036/lib/DBD/mysql.pm"
|
|
|
|
SECTION = "libs"
|
|
LICENSE = "Artistic-1.0 | GPL-1.0+"
|
|
DEPENDS += "libdbi-perl-native libmysqlclient"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=d0a06964340e5c0cde88b7af611f755c"
|
|
|
|
SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MI/MICHIELB/DBD-mysql-${PV}.tar.gz \
|
|
file://0001-Use-API-function-for-reconnect.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "4a00dd7f1c057931147c65dfc4901c36"
|
|
SRC_URI[sha256sum] = "629f865e8317f52602b2f2efd2b688002903d2e4bbcba5427cb6188b043d6f99"
|
|
|
|
S = "${WORKDIR}/DBD-mysql-${PV}"
|
|
|
|
inherit cpan
|