diff options
author | Wez Furlong <wez@php.net> | 2005-09-24 19:15:23 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2005-09-24 19:15:23 +0000 |
commit | 4fb5b322ee98c45cd0318d2ce5dca7bb3e4a20e7 (patch) | |
tree | fe761f400298735a9b7bced6556925c6b89ef68f | |
parent | 3905ce46d9c4e12af1d6a40d4ae1458dcf0d7af7 (diff) | |
download | php-git-4fb5b322ee98c45cd0318d2ce5dca7bb3e4a20e7.tar.gz |
99% certain that this fixes PECL #5366 and PECL #5391.
-rw-r--r-- | ext/pdo_sqlite/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_sqlite/config.m4 b/ext/pdo_sqlite/config.m4 index 4c781fcac3..548e9a5cfd 100644 --- a/ext/pdo_sqlite/config.m4 +++ b/ext/pdo_sqlite/config.m4 @@ -83,7 +83,7 @@ if test "$PHP_PDO_SQLITE" != "no"; then PHP_NEW_EXTENSION(pdo_sqlite, $php_pdo_sqlite_sources_core $pdo_sqlite_sources, - $ext_shared,,-I@ext_builddir@/sqlite/src -DPDO_SQLITE_BUNDLED=1 -DSQLITE_OMIT_CURSOR -I$pdo_inc_path) + $ext_shared,,-I$ext_builddir/sqlite/src -DPDO_SQLITE_BUNDLED=1 -DSQLITE_OMIT_CURSOR -I$pdo_inc_path) PHP_ADD_BUILD_DIR($ext_builddir/sqlite/src, 1) AC_CHECK_SIZEOF(char *,4) |