sqlite: 3.8.10.2 -> 3.9.0

Upgrade sqlite from 3.8.10.2 to 3.9.0.

* update python function to get right SRC_URI
* drop 0001-using-the-dynamic-library.patch which use dynamic library
  that it is done that way in new version

(From OE-Core rev: a23ddbd2e197cfa1ebc829e0d83b8997dc24cec7)

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Kai Kang
2015-10-16 14:28:11 +08:00
committed by Richard Purdie
parent c0fe43cdbe
commit 351c69a022
2 changed files with 5 additions and 35 deletions

View File

@@ -1,30 +0,0 @@
[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