sqlite and 'make -j'

php.internals

Jon Parise

23 years ago
Just a note that the addition of sqlite to the PHP build has broken 'make -j' compiling: In file included from /home/jon/src/php5/ext/sqlite/libsqlite/src/auth.c:19: /home/jon/src/php5/ext/sqlite/libsqlite/src/sqliteInt.h:17: sqlite.h: No such file or directory *** Error code 1 /home/jon/src/php5/ext/sqlite/sess_sqlite.c:27: sqlite.h: No such file or directory I've just glanced at the libsqlite/src/Makefile, and it looks like sqlite.h is generated during the build. However, this target's dependency isn't being advertised correctly. I don't know how to fix this in terms of the PHP build system, though. Maybe someone else does?
-- Jon Parise (jon@php.net) :: The PHP Project (http://www.php.net/)

Jon Parise

23 years ago
On Sat, Jul 05, 2003 at 05:39:04PM -0400, Jon Parise wrote:
> Just a note that the addition of sqlite to the PHP build has broken > 'make -j' compiling: > > In file included from /home/jon/src/php5/ext/sqlite/libsqlite/src/auth.c:19: /home/jon/src/php5/ext/sqlite/libsqlite/src/sqliteInt.h:17: sqlite.h: No such file or directory > *** Error code 1 > /home/jon/src/php5/ext/sqlite/sess_sqlite.c:27: sqlite.h: No such file or directory > > I've just glanced at the libsqlite/src/Makefile, and it looks like > sqlite.h is generated during the build. However, this target's > dependency isn't being advertised correctly. > > I don't know how to fix this in terms of the PHP build system, though. > Maybe someone else does?
I've just committed a fix for this in ext/sqlite/Makefile.frag:1.7.
-- Jon Parise (jon@php.net) :: The PHP Project (http://www.php.net/)