summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/sqlite/sqlite3
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2016-01-13 12:46:03 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-18 11:47:07 +0000
commitf9974f2a612b6b8929130a4e35dd554c0f1e068f (patch)
tree102c46454e2e060419fc3c01293effc84cad7e6d /meta/recipes-support/sqlite/sqlite3
parentcd7910df1d8c0f8996fc1af0b372bfad23d58c34 (diff)
downloadpoky-f9974f2a612b6b8929130a4e35dd554c0f1e068f.tar.gz
sqlite3: upgrade to version 3.10.0
3.9.2 -> 3.10.0 1. Fixed a parallel build problem 2. Added a PACKAGECONFIG for readline (From OE-Core rev: ed46ac71846845ffc41efcd55a36e27883d9980a) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/sqlite/sqlite3')
-rw-r--r--meta/recipes-support/sqlite/sqlite3/parallel.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-support/sqlite/sqlite3/parallel.patch b/meta/recipes-support/sqlite/sqlite3/parallel.patch
new file mode 100644
index 0000000000..87471f0615
--- /dev/null
+++ b/meta/recipes-support/sqlite/sqlite3/parallel.patch
@@ -0,0 +1,24 @@
1build: Fix parallel build problems
2
3Avoid parallel build errors related to sqlite3.o target.
4
5Upstream-Status: Pending
6
7Signed-off-by: Maxin B. John <maxin.john@intel.com>
8---
9diff -Naur sqlite-autoconf-3100000-orig/Makefile.am sqlite-autoconf-3100000/Makefile.am
10--- sqlite-autoconf-3100000-orig/Makefile.am 2016-01-06 14:03:00.000000000 +0200
11+++ sqlite-autoconf-3100000/Makefile.am 2016-01-12 13:14:03.620117514 +0200
12@@ -6,10 +6,8 @@
13 libsqlite3_la_LDFLAGS = -no-undefined -version-info 8:6:8
14
15 bin_PROGRAMS = sqlite3
16-sqlite3_SOURCES = shell.c sqlite3.h
17-EXTRA_sqlite3_SOURCES = sqlite3.c
18-sqlite3_LDADD = @EXTRA_SHELL_OBJ@ @READLINE_LIBS@
19-sqlite3_DEPENDENCIES = @EXTRA_SHELL_OBJ@
20+sqlite3_SOURCES = shell.c sqlite3.c sqlite3.h
21+sqlite3_LDADD = @READLINE_LIBS@
22 sqlite3_CFLAGS = $(AM_CFLAGS)
23
24 include_HEADERS = sqlite3.h sqlite3ext.h