summaryrefslogtreecommitdiff
path: root/ext/sqlite/config.m4
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-02-15 21:09:42 +0000
committerMarcus Boerger <helly@php.net>2005-02-15 21:09:42 +0000
commit7956ca0211fed55f9f658e2a1eeec864a2475a08 (patch)
treea94e9feb827581e285a34ee11672cbd4393232dd /ext/sqlite/config.m4
parent8ff4a1002c90461dc71c0cf7bbac505cc87b48c7 (diff)
downloadphp-git-7956ca0211fed55f9f658e2a1eeec864a2475a08.tar.gz
- SQLite depends on SPL if it is present
- Add SQLiteResult::count() - SQLiteResult implements Countable if present
Diffstat (limited to 'ext/sqlite/config.m4')
-rw-r--r--ext/sqlite/config.m41
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/sqlite/config.m4 b/ext/sqlite/config.m4
index 2b3c7e1d58..db9c2637ae 100644
--- a/ext/sqlite/config.m4
+++ b/ext/sqlite/config.m4
@@ -70,6 +70,7 @@ if test "$PHP_SQLITE" != "no"; then
libsqlite/src/where.c libsqlite/src/trigger.c"
PHP_NEW_EXTENSION(sqlite, sqlite.c sess_sqlite.c $sources, $ext_shared,,$PHP_SQLITE_CFLAGS)
+ PHP_ADD_EXTENSION_DEP(sqlite, spl)
PHP_ADD_BUILD_DIR($ext_builddir/libsqlite)
PHP_ADD_BUILD_DIR($ext_builddir/libsqlite/src)
AC_CHECK_SIZEOF(char *,4)