diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-08-28 18:12:48 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-08-28 18:15:26 -0700 |
commit | dac3c9f062d5d5cdbd0e0c69e2bfa99e0d13332b (patch) | |
tree | 84f0274c9bf2d5b8ccd7ba537b8a8580bc8b1cc2 /meta-oe/recipes-dbs/mysql/mariadb-native_10.11.9.bb | |
parent | 9fac163596cf3f1ce43761662c9d7ac9fc372aa1 (diff) | |
download | meta-openembedded-dac3c9f062d5d5cdbd0e0c69e2bfa99e0d13332b.tar.gz |
mariadb: Upgrade to 10.11.9 release
Drop upstreamed patches
Fixes build with fmt11
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-dbs/mysql/mariadb-native_10.11.9.bb')
-rw-r--r-- | meta-oe/recipes-dbs/mysql/mariadb-native_10.11.9.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-dbs/mysql/mariadb-native_10.11.9.bb b/meta-oe/recipes-dbs/mysql/mariadb-native_10.11.9.bb new file mode 100644 index 000000000..578357b48 --- /dev/null +++ b/meta-oe/recipes-dbs/mysql/mariadb-native_10.11.9.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | require mariadb.inc | ||
2 | inherit native | ||
3 | |||
4 | PROVIDES += "mysql5-native" | ||
5 | DEPENDS = "ncurses-native zlib-native bison-native libpcre2-native \ | ||
6 | gnutls-native fmt-native \ | ||
7 | " | ||
8 | |||
9 | RDEPENDS:${PN} = "" | ||
10 | PACKAGES = "" | ||
11 | EXTRA_OEMAKE = "" | ||
12 | |||
13 | do_install() { | ||
14 | oe_runmake 'DESTDIR=${D}' install | ||
15 | |||
16 | install -d ${D}${bindir} | ||
17 | install -m 0755 sql/gen_lex_hash ${D}${bindir}/ | ||
18 | install -m 0755 sql/gen_lex_token ${D}${bindir}/ | ||
19 | install -m 0755 extra/comp_err ${D}${bindir}/ | ||
20 | install -m 0755 scripts/comp_sql ${D}${bindir}/ | ||
21 | install -m 0755 strings/uca-dump ${D}${bindir}/ | ||
22 | } | ||
23 | |||