Browse Source

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fixed Bug #63149 Feature missing with system SQLite
pull/242/head
Remi Collet 14 years ago
parent
commit
966faa9a87
  1. 3
      ext/sqlite3/config0.m4

3
ext/sqlite3/config0.m4

@ -50,6 +50,9 @@ if test $PHP_SQLITE3 != "no"; then
PHP_CHECK_LIBRARY(sqlite3,sqlite3_key,[
AC_DEFINE(HAVE_SQLITE3_KEY, 1, [have commercial sqlite3 with crypto support])
])
PHP_CHECK_LIBRARY(sqlite3,sqlite3_column_table_name,[
AC_DEFINE(SQLITE_ENABLE_COLUMN_METADATA, 1, [have sqlite3 with column metadata enabled])
])
PHP_CHECK_LIBRARY(sqlite3,sqlite3_load_extension,
[],

Loading…
Cancel
Save