From 346505144a18b738846b9d5bc6f146426d3572ba Mon Sep 17 00:00:00 2001 From: Roy Li Date: Tue, 19 May 2015 20:32:01 +0800 Subject: sqlite3: upgrade to 3.8.10 upgrade to include CVE fixes: CVE-2015-3414 CVE-2015-3415 CVE-2015-3416 Signed-off-by: Roy Li Signed-off-by: Richard Purdie --- .../files/0001-using-the-dynamic-library.patch | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch (limited to 'meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch') diff --git a/meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch b/meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch new file mode 100644 index 00000000000..e3bfd5f6568 --- /dev/null +++ b/meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch @@ -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 +--- + 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 + -- cgit 1.2.3-korg