mirror of
https://github.com/pygos/build.git
synced 2024-11-21 18:49:46 +01:00
Sqlite3: enable column meta data
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
This commit is contained in:
parent
77653ba75d
commit
969d777291
2 changed files with 13 additions and 1 deletions
12
pkg/sqlite3/0001.patch
Normal file
12
pkg/sqlite3/0001.patch
Normal 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
|
|
@ -7,7 +7,7 @@ DEPENDS="readline-dev zlib-dev toolchain"
|
|||
SUBPKG="sqlite3 sqlite3-dev sqlite3-shell"
|
||||
|
||||
prepare() {
|
||||
return
|
||||
apply_patches
|
||||
}
|
||||
|
||||
build() {
|
||||
|
|
Loading…
Reference in a new issue