mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
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>
This commit is contained in:
@@ -24,7 +24,7 @@ inherit autotools pkgconfig siteinfo
|
||||
|
||||
# enable those which are enabled by default in configure
|
||||
PACKAGECONFIG ?= "fts4 fts5 json1 rtree dyn_ext"
|
||||
PACKAGECONFIG_class-native ?= "fts4 fts5 json1 rtree dyn_ext"
|
||||
PACKAGECONFIG:class-native ?= "fts4 fts5 json1 rtree dyn_ext"
|
||||
|
||||
PACKAGECONFIG[editline] = "--enable-editline,--disable-editline,libedit"
|
||||
PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline ncurses"
|
||||
@@ -46,23 +46,23 @@ EXTRA_OECONF = " \
|
||||
"
|
||||
|
||||
# pread() is in POSIX.1-2001 so any reasonable system must surely support it
|
||||
CFLAGS_append = " -DUSE_PREAD"
|
||||
CFLAGS:append = " -DUSE_PREAD"
|
||||
|
||||
# Provide column meta-data API
|
||||
CFLAGS_append = " -DSQLITE_ENABLE_COLUMN_METADATA"
|
||||
CFLAGS:append = " -DSQLITE_ENABLE_COLUMN_METADATA"
|
||||
|
||||
# Unless SQLITE_BYTEORDER is predefined, the code falls back to build time
|
||||
# huristics, which are not always correct
|
||||
CFLAGS_append = " ${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', '-DSQLITE_BYTEORDER=1234', '-DSQLITE_BYTEORDER=4321', d)}"
|
||||
CFLAGS:append = " ${@oe.utils.conditional('SITEINFO_ENDIANNESS', 'le', '-DSQLITE_BYTEORDER=1234', '-DSQLITE_BYTEORDER=4321', d)}"
|
||||
|
||||
PACKAGES = "lib${BPN} lib${BPN}-dev lib${BPN}-doc ${PN}-dbg lib${BPN}-staticdev ${PN}"
|
||||
|
||||
FILES_${PN} = "${bindir}/*"
|
||||
FILES_lib${BPN} = "${libdir}/*.so.*"
|
||||
FILES_lib${BPN}-dev = "${libdir}/*.la ${libdir}/*.so \
|
||||
FILES:${PN} = "${bindir}/*"
|
||||
FILES:lib${BPN} = "${libdir}/*.so.*"
|
||||
FILES:lib${BPN}-dev = "${libdir}/*.la ${libdir}/*.so \
|
||||
${libdir}/pkgconfig ${includedir}"
|
||||
FILES_lib${BPN}-doc = "${docdir} ${mandir} ${infodir}"
|
||||
FILES_lib${BPN}-staticdev = "${libdir}/lib*.a"
|
||||
FILES:lib${BPN}-doc = "${docdir} ${mandir} ${infodir}"
|
||||
FILES:lib${BPN}-staticdev = "${libdir}/lib*.a"
|
||||
|
||||
AUTO_LIBNAME_PKGS = "${MLPREFIX}lib${BPN}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user