diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-02-16 18:49:44 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-18 07:39:21 +0000 |
commit | f92465c02ea6aef59f5e65a9eb70ebc6a5c92617 (patch) | |
tree | 15efa59060339da6db04aabaa4864e8aa5ddaacb /meta/recipes-support/sqlite/sqlite3/parallel.patch | |
parent | 75ae572427d9cd3f0b3e9e7d4d0e7a93a4f04690 (diff) | |
download | openembedded-core-f92465c02ea6aef59f5e65a9eb70ebc6a5c92617.tar.gz openembedded-core-f92465c02ea6aef59f5e65a9eb70ebc6a5c92617.tar.bz2 openembedded-core-f92465c02ea6aef59f5e65a9eb70ebc6a5c92617.zip |
sqlite3: update 3.10.2 -> 3.11.0
http://www.sqlite.org/releaselog/3_11_0.html
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/sqlite/sqlite3/parallel.patch')
-rw-r--r-- | meta/recipes-support/sqlite/sqlite3/parallel.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3/parallel.patch b/meta/recipes-support/sqlite/sqlite3/parallel.patch deleted file mode 100644 index 7b886a6bca..0000000000 --- a/meta/recipes-support/sqlite/sqlite3/parallel.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 140476c3e6a6f497bdd95c0c039cb9a680f5a414 Mon Sep 17 00:00:00 2001 -From: Andre McCurdy <armccurdy@gmail.com> -Date: Fri, 22 Jan 2016 15:53:04 -0800 -Subject: [PATCH] parallel build fix - -When statically linking the sqlite3 binary, ensure that it depends on -its own version of sqlite3.o, instead of the version being built (in -parallel) for use in the libsqlite3.a static library. - -Upstream-Status: Pending - -Signed-off-by: Andre McCurdy <armccurdy@gmail.com> ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index e9b3950..0e8f043 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -129,7 +129,7 @@ AC_ARG_ENABLE(static-shell, [AS_HELP_STRING( - [statically link libsqlite3 into shell tool [default=yes]])], - [], [enable_static_shell=yes]) - if test x"$enable_static_shell" == "xyes"; then -- EXTRA_SHELL_OBJ=sqlite3.$OBJEXT -+ EXTRA_SHELL_OBJ=sqlite3-sqlite3.$OBJEXT - else - EXTRA_SHELL_OBJ=libsqlite3.la - fi --- -1.9.1 - |