diff options
| author | Wez Furlong <wez@php.net> | 2005-02-13 03:15:11 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2005-02-13 03:15:11 +0000 |
| commit | 0aa82c3c8375325445514623b24d7c0046f1dcc8 (patch) | |
| tree | 6ac9a93374d00eadfa9a56a14ccbdb006c529315 /ext/sqlite | |
| parent | bee7f3d0acca657ca185b3b718b7da3bb7f34207 (diff) | |
| download | php-git-0aa82c3c8375325445514623b24d7c0046f1dcc8.tar.gz | |
same fix here
Diffstat (limited to 'ext/sqlite')
| -rw-r--r-- | ext/sqlite/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/config.m4 b/ext/sqlite/config.m4 index 0de50a040f..2b3c7e1d58 100644 --- a/ext/sqlite/config.m4 +++ b/ext/sqlite/config.m4 @@ -90,7 +90,7 @@ if test "$PHP_SQLITE" != "no"; then sed -e s/--VERS--/$SQLITE_VERSION/ -e s/--ENCODING--/$SQLITE_ENCODING/ $ext_srcdir/libsqlite/src/sqlite.h.in >$ext_srcdir/libsqlite/src/sqlite.h - if test "$ext_shared" = "no"; then + if test "$ext_shared" = "no" -o "$ext_srcdir" != "$abs_srcdir"; then echo '#include <php_config.h>' > $ext_srcdir/libsqlite/src/config.h else echo "#include \"$abs_builddir/config.h\"" > $ext_srcdir/libsqlite/src/config.h |
