unread
Just thought I'd share this little bit of insight for people using the
configure.js build system on win32.
If you have your tree in the following configuration:
php-src/
pecl/
and you only update php-src on a regular basis, you can get bitten.
Some extensions live in both pecl and under php-src/ext. The build
system will put pecl earlier in the include path, so you might find
that your up-to-date core build is referencing headers from a stale
pecl checkout.
Solution: if you're updating from cvs, update both php-src and pecl,
not just one or the other.
--Wez.