diff options
| author | Scott MacVicar <scottmac@php.net> | 2009-10-16 02:22:48 +0000 |
|---|---|---|
| committer | Scott MacVicar <scottmac@php.net> | 2009-10-16 02:22:48 +0000 |
| commit | 6b805e28d1c193df7ee66247ed9675bbb5092745 (patch) | |
| tree | 841eaac5fa6cfe58792782815b822e41e4eea0e7 /ext/sqlite3 | |
| parent | 0ad09c4d16bf11f81dd22ab07f8275b950eb49c4 (diff) | |
| download | php-git-6b805e28d1c193df7ee66247ed9675bbb5092745.tar.gz | |
Add metadata support to the bundled version of libsqlite on Windows, part of bug #49206.
Will commit the new feature part separately.
Diffstat (limited to 'ext/sqlite3')
| -rw-r--r-- | ext/sqlite3/config.w32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/config.w32 b/ext/sqlite3/config.w32 index 271a0c8247..4d9dca40ae 100644 --- a/ext/sqlite3/config.w32 +++ b/ext/sqlite3/config.w32 @@ -4,7 +4,7 @@ ARG_WITH("sqlite3", "SQLite 3 support", "no"); if (PHP_SQLITE3 != "no") { - ADD_FLAG("CFLAGS_SQLITE3", "/D SQLITE_THREADSAFE=" + (PHP_ZTS == "yes" ? "1" : "0") + " /D SQLITE_ENABLE_FTS3=1 /D SQLITE_CORE=1 "); + ADD_FLAG("CFLAGS_SQLITE3", "/D SQLITE_THREADSAFE=" + (PHP_ZTS == "yes" ? "1" : "0") + " /D SQLITE_ENABLE_FTS3=1 /D SQLITE_ENABLE_COLUMN_METADATA=1 /D SQLITE_CORE=1 "); EXTENSION("sqlite3", "sqlite3.c", null, "/I" + configure_module_dirname + "/libsqlite /I" + configure_module_dirname); ADD_SOURCES(configure_module_dirname + "/libsqlite", "sqlite3.c", "sqlite3"); |
