Sqlite3: enable column meta data

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
This commit is contained in:
David Oberhollenzer 2019-04-22 17:30:19 +02:00
parent 77653ba75d
commit 969d777291
2 changed files with 13 additions and 1 deletions

12
pkg/sqlite3/0001.patch Normal file
View File

@ -0,0 +1,12 @@
diff --git a/sqlite3.c b/sqlite3.c.new
index 4729f45..d09425e 100644
--- a/sqlite3.c
+++ b/sqlite3.c
@@ -17,6 +17,7 @@
** language. The code for the "sqlite3" command-line shell is also in a
** separate file. This file contains only code for the core SQLite library.
*/
+#define SQLITE_ENABLE_COLUMN_METADATA 1
#define SQLITE_CORE 1
#define SQLITE_AMALGAMATION 1
#ifndef SQLITE_PRIVATE

View File

@ -7,7 +7,7 @@ DEPENDS="readline-dev zlib-dev toolchain"
SUBPKG="sqlite3 sqlite3-dev sqlite3-shell"
prepare() {
return
apply_patches
}
build() {