diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-support/sqlite | |
parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
download | poky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz |
Convert to new override syntax
This is the result of automated script conversion:
scripts/contrib/convert-overrides.py <oe-core directory>
converting the metadata to use ":" as the override character instead of "_".
(From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/sqlite')
-rw-r--r-- | meta/recipes-support/sqlite/sqlite3.inc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3.inc b/meta/recipes-support/sqlite/sqlite3.inc index 1adc0eba66..aa5dc0974b 100644 --- a/meta/recipes-support/sqlite/sqlite3.inc +++ b/meta/recipes-support/sqlite/sqlite3.inc | |||
@@ -24,7 +24,7 @@ inherit autotools pkgconfig siteinfo | |||
24 | 24 | ||
25 | # enable those which are enabled by default in configure | 25 | # enable those which are enabled by default in configure |
26 | PACKAGECONFIG ?= "fts4 fts5 json1 rtree dyn_ext" | 26 | PACKAGECONFIG ?= "fts4 fts5 json1 rtree dyn_ext" |
27 | PACKAGECONFIG_class-native ?= "fts4 fts5 json1 rtree dyn_ext" | 27 | PACKAGECONFIG:class-native ?= "fts4 fts5 json1 rtree dyn_ext" |
28 | 28 | ||
29 | PACKAGECONFIG[editline] = "--enable-editline,--disable-editline,libedit" | 29 | PACKAGECONFIG[editline] = "--enable-editline,--disable-editline,libedit" |
30 | PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline ncurses" | 30 | PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline ncurses" |
@@ -46,23 +46,23 @@ EXTRA_OECONF = " \ | |||
46 | " | 46 | " |
47 | 47 | ||
48 | # pread() is in POSIX.1-2001 so any reasonable system must surely support it | 48 | # pread() is in POSIX.1-2001 so any reasonable system must surely support it |
49 | CFLAGS_append = " -DUSE_PREAD" | 49 | CFLAGS:append = " -DUSE_PREAD" |
50 | 50 | ||
51 | # Provide column meta-data API | 51 | # Provide column meta-data API |
52 | CFLAGS_append = " -DSQLITE_ENABLE_COLUMN_METADATA" | 52 | CFLAGS:append = " -DSQLITE_ENABLE_COLUMN_METADATA" |
53 | 53 | ||
54 | # Unless SQLITE_BYTEORDER is predefined, the code falls back to build time | 54 | # Unless SQLITE_BYTEORDER is predefined, the code falls back to build time |
55 | # huristics, which are not always correct | 55 | # huristics, which are not always correct |
56 | CFLAGS_append = " ${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', '-DSQLITE_BYTEORDER=1234', '-DSQLITE_BYTEORDER=4321', d)}" | 56 | CFLAGS:append = " ${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', '-DSQLITE_BYTEORDER=1234', '-DSQLITE_BYTEORDER=4321', d)}" |
57 | 57 | ||
58 | PACKAGES = "lib${BPN} lib${BPN}-dev lib${BPN}-doc ${PN}-dbg lib${BPN}-staticdev ${PN}" | 58 | PACKAGES = "lib${BPN} lib${BPN}-dev lib${BPN}-doc ${PN}-dbg lib${BPN}-staticdev ${PN}" |
59 | 59 | ||
60 | FILES_${PN} = "${bindir}/*" | 60 | FILES:${PN} = "${bindir}/*" |
61 | FILES_lib${BPN} = "${libdir}/*.so.*" | 61 | FILES:lib${BPN} = "${libdir}/*.so.*" |
62 | FILES_lib${BPN}-dev = "${libdir}/*.la ${libdir}/*.so \ | 62 | FILES:lib${BPN}-dev = "${libdir}/*.la ${libdir}/*.so \ |
63 | ${libdir}/pkgconfig ${includedir}" | 63 | ${libdir}/pkgconfig ${includedir}" |
64 | FILES_lib${BPN}-doc = "${docdir} ${mandir} ${infodir}" | 64 | FILES:lib${BPN}-doc = "${docdir} ${mandir} ${infodir}" |
65 | FILES_lib${BPN}-staticdev = "${libdir}/lib*.a" | 65 | FILES:lib${BPN}-staticdev = "${libdir}/lib*.a" |
66 | 66 | ||
67 | AUTO_LIBNAME_PKGS = "${MLPREFIX}lib${BPN}" | 67 | AUTO_LIBNAME_PKGS = "${MLPREFIX}lib${BPN}" |
68 | 68 | ||