mirror of
https://git.yoctoproject.org/poky
synced 2026-09-12 06:49:32 +02:00
sqlite3: Upgrade to 2.8.6.0
(From OE-Core rev: 6328e7dcd93714ae81fe6d9d5dc92a1efb07fe39) 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
1fb5d64a84
commit
6a6f50b7f1
21
meta/recipes-support/sqlite/sqlite3_3.8.6.0.bb
Normal file
21
meta/recipes-support/sqlite/sqlite3_3.8.6.0.bb
Normal file
@@ -0,0 +1,21 @@
|
||||
require sqlite3.inc
|
||||
|
||||
LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0"
|
||||
|
||||
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 = "3"
|
||||
SQLITE_PV = "${@sqlite_download_version(d)}"
|
||||
SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${SQLITE_PV}.tar.gz"
|
||||
|
||||
SRC_URI[md5sum] = "f7e4a156b583abeba349629e2364224b"
|
||||
SRC_URI[sha256sum] = "53bab14255bc16c3d73fdbe54b364c1764709d68dda167587f8026c98b9f4e95"
|
||||
|
||||
S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}"
|
||||
|
||||
# Provide column meta-data API
|
||||
BUILD_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA"
|
||||
TARGET_CFLAGS += "-DSQLITE_ENABLE_COLUMN_METADATA"
|
||||
|
||||
Reference in New Issue
Block a user