mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 15:57:04 +00:00
sqlite3: Upgrade to 3.8.7.4
(From OE-Core rev: fc537000800e6561f0a6260ee35e23b9b5af6fdd) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
1e8147a569
commit
fa9777bdad
@@ -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] = "33bb8db0038317ce1b0480ca1185c7ba"
|
||||
SRC_URI[sha256sum] = "86370f139405fdfe03334fd618171a74e50f589f17ccbe5933361ed1f58359ec"
|
||||
|
||||
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