mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
sqlite3: Update to 3080403
And rename the PV to match the upstream versioning This requires a PE Bump to ensure package versions don't go backwards. (From OE-Core rev: dbcb25038959e4cf252ba812176a112a49a382d5) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
07d3c2ff41
commit
2a309746fb
@@ -6,15 +6,15 @@ def sqlite_download_version(d):
|
||||
pvsplit = d.getVar('PV', True).split('.')
|
||||
return pvsplit[0] + ''.join([part.rjust(2,'0') for part in pvsplit[1:]])
|
||||
|
||||
PE = "1"
|
||||
PE = "2"
|
||||
SQLITE_PV = "${@sqlite_download_version(d)}"
|
||||
SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${SQLITE_PV}.tar.gz"
|
||||
|
||||
SRC_URI[md5sum] = "509ff98d8dc9729b618b7e96612079c6"
|
||||
SRC_URI[sha256sum] = "de5dc216e9289fabf027f78dbbface32ffc8c6341b7d841d0814b1a452ffdb8c"
|
||||
SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${PV}.tar.gz"
|
||||
|
||||
S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}"
|
||||
|
||||
SRC_URI[md5sum] = "0f5459cde43cb269e5120ecd2c671ced"
|
||||
SRC_URI[sha256sum] = "e0e995e23a324a5d6ae95d8a836240382a4d7475d09707fc469c8cafcbd48d65"
|
||||
|
||||
# Provide column meta-data API
|
||||
BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA"
|
||||
TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA"
|
||||
Reference in New Issue
Block a user