* [ptxdist] [PATCH] sqlite: Source bugfix
@ 2013-11-05 10:29 Markus Pargmann
0 siblings, 0 replies; only message in thread
From: Markus Pargmann @ 2013-11-05 10:29 UTC (permalink / raw)
To: ptxdist; +Cc: Markus Pargmann
sqlite.make used the wrong "amalgamation sources". They include a
generated sqlite3.c file. To make use of some flags like
"SQLITE_ENABLE_UPDATE_DELETE_LIMIT", it is necessary to generate the
sqlite3.c file.
This patch uses the raw sources of sqlite3 to generate a sqlite3.c which
works with those special flags.
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
---
rules/sqlite.make | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/rules/sqlite.make b/rules/sqlite.make
index 26760db..a3aadcc 100644
--- a/rules/sqlite.make
+++ b/rules/sqlite.make
@@ -20,11 +20,11 @@ PACKAGES-$(PTXCONF_SQLITE) += sqlite
#
# Paths and names
#
-SQLITE_VERSION := 3071502
-SQLITE_MD5 := bcb0ab0b5b30116b2531cfeef3c861b4
-SQLITE := sqlite-autoconf-$(SQLITE_VERSION)
-SQLITE_SUFFIX := tar.gz
-SQLITE_URL := http://www.sqlite.org/$(SQLITE).$(SQLITE_SUFFIX)
+SQLITE_VERSION := 3080100
+SQLITE_MD5 := f05e46a9bea9f4be2165de2b425d0eed
+SQLITE := sqlite-src-$(SQLITE_VERSION)
+SQLITE_SUFFIX := zip
+SQLITE_URL := http://www.sqlite.org/2013/$(SQLITE).$(SQLITE_SUFFIX)
SQLITE_SOURCE := $(SRCDIR)/$(SQLITE).$(SQLITE_SUFFIX)
SQLITE_DIR := $(BUILDDIR)/$(SQLITE)
SQLITE_LICENSE := public_domain
--
1.8.4.rc3
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2013-11-05 10:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-05 10:29 [ptxdist] [PATCH] sqlite: Source bugfix Markus Pargmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox