diff options
author | foobar <sniper@php.net> | 2005-01-09 21:05:06 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-01-09 21:05:06 +0000 |
commit | a139dbf9ccf47a99b449c7bdcdfb846563bb7cec (patch) | |
tree | fcb22e91ef5c5e71fc323ef1d16c156375467338 /ext/sqlite | |
parent | 37d3ea836ec665500e6b61d35212b6d168d2d218 (diff) | |
download | php-git-a139dbf9ccf47a99b449c7bdcdfb846563bb7cec.tar.gz |
- Fix outside-source-tree builds. Always include generated header files
with #include <some_header.h> to make sure the correct file is used.
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 828a31ae97..0de50a040f 100644 --- a/ext/sqlite/config.m4 +++ b/ext/sqlite/config.m4 @@ -91,7 +91,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 - echo '#include "php_config.h"' > $ext_srcdir/libsqlite/src/config.h + echo '#include <php_config.h>' > $ext_srcdir/libsqlite/src/config.h else echo "#include \"$abs_builddir/config.h\"" > $ext_srcdir/libsqlite/src/config.h fi |