|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-11-30 19:13 UTC] svn@php.net
[2009-11-30 19:15 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 09:00:01 2025 UTC |
Description: ------------ Revision 291283 fixes the caching of the PDO include path, but it causes compile failures when the cached value is used. The problem seems to be in ext/sqlite/config.m4 on line 53. pdo_cv_inc_path="-I$pdo_cv_inc_path" Other users of pdo_cv_inc_path expect it to be a path without the -I. On the run of configure, when this cached value is used in ext/pdo_mysql/config.m4 it ends up with a Makefile like this: ext/pdo_mysql/pdo_mysql.lo: /home/cpeasyapache/src/php-5.2.12RC3/ext/pdo_mysql/pdo_mysql.c $(LIBTOOL) --mode=compile $(CC) -I-I/home/cpeasyapache/src/php-5.2.12RC3/ext -Iext/pdo_mysql/ -I/home/cpeasyapache/src/php-5.2.12RC3/ext/pdo_mysql/ $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) -prefer-non-pic -c /home/cpeasyapache/src/php-5.2.12RC3/ext/pdo_mysql/pdo_mysql.c -o ext/pdo_mysql/pdo_mysql.lo The -I-I<path> is the problem. It looks like 291283 was reverted in the PHP 5.2 branch with revision 291414 but this bug still exists in trunk.