mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
sqlite3: upgrade to 3.8.10
upgrade to include CVE fixes:
CVE-2015-3414
CVE-2015-3415
CVE-2015-3416
(From OE-Core rev: 346505144a18b738846b9d5bc6f146426d3572ba)
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -0,0 +1,30 @@
|
|||||||
|
[PATCH] using the dynamic library
|
||||||
|
|
||||||
|
Upstream-Status: Inappropriate [configuration]
|
||||||
|
|
||||||
|
building statically-linked sqlite3 failed since sqlite3.o is generated in
|
||||||
|
different dir, even if link successes, the size of sqlite3 is become larger,
|
||||||
|
so use the dynamic link, ref: http://patchwork.openembedded.org/patch/93293/
|
||||||
|
|
||||||
|
Signed-off-by: Roy Li <rongqing.li@windriver.com>
|
||||||
|
---
|
||||||
|
Makefile.am | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile.am b/Makefile.am
|
||||||
|
index 88bc23d..fe50f20 100644
|
||||||
|
--- a/Makefile.am
|
||||||
|
+++ b/Makefile.am
|
||||||
|
@@ -7,7 +7,8 @@ libsqlite3_la_LDFLAGS = -no-undefined -version-info 8:6:8
|
||||||
|
|
||||||
|
bin_PROGRAMS = sqlite3
|
||||||
|
sqlite3_SOURCES = shell.c sqlite3.h
|
||||||
|
-sqlite3_LDADD = sqlite3.$(OBJEXT) @READLINE_LIBS@
|
||||||
|
+sqlite3_LDADD = @READLINE_LIBS@ libsqlite3.la
|
||||||
|
+
|
||||||
|
|
||||||
|
include_HEADERS = sqlite3.h sqlite3ext.h
|
||||||
|
|
||||||
|
--
|
||||||
|
1.9.1
|
||||||
|
|
||||||
+5
-3
@@ -8,10 +8,12 @@ def sqlite_download_version(d):
|
|||||||
|
|
||||||
PE = "3"
|
PE = "3"
|
||||||
SQLITE_PV = "${@sqlite_download_version(d)}"
|
SQLITE_PV = "${@sqlite_download_version(d)}"
|
||||||
SRC_URI = "http://www.sqlite.org/2014/sqlite-autoconf-${SQLITE_PV}.tar.gz"
|
SRC_URI = "http://www.sqlite.org/2015/sqlite-autoconf-${SQLITE_PV}.tar.gz \
|
||||||
|
file://0001-using-the-dynamic-library.patch \
|
||||||
|
"
|
||||||
|
|
||||||
SRC_URI[md5sum] = "33bb8db0038317ce1b0480ca1185c7ba"
|
SRC_URI[md5sum] = "04d0311ef70818e8d914c1dc383eddff"
|
||||||
SRC_URI[sha256sum] = "86370f139405fdfe03334fd618171a74e50f589f17ccbe5933361ed1f58359ec"
|
SRC_URI[sha256sum] = "c4b8f9eefbdf0b9bef2044bdc3510c8a3f3b0ddb0489661fb433034187f5a428"
|
||||||
|
|
||||||
S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}"
|
S = "${WORKDIR}/sqlite-autoconf-${SQLITE_PV}"
|
||||||
|
|
||||||
Reference in New Issue
Block a user