]> granicus.if.org Git - php/commit
Fix bugs #35379 and #35432 by erroring out when the user configures PHP
authorWez Furlong <wez@php.net>
Wed, 30 Nov 2005 04:47:24 +0000 (04:47 +0000)
committerWez Furlong <wez@php.net>
Wed, 30 Nov 2005 04:47:24 +0000 (04:47 +0000)
commit046bff25fb2d35de000fc83741d23e4ebe2e7546
treeb6675792c2bf25b4db9a8f2326ff5690e8766c51
parent559c624806f9a518f13553d62c7190af500ef2e2
Fix bugs #35379 and #35432 by erroring out when the user configures PHP
extensions with conflicting options.

Jani, feel free to refine the way that extensions are detected as shared :)

For this to be foolproof, we either need to guarantee that the extensions have
their PHP_NEW_EXTENSION invoked in the right sequence.  Eg: PDO should be
handled in the configure script before any of the extensions that depend on it
are handled... tricky.

By happy coincidence, the alphabet ensures that pdo is configured before all
the pdo_ extensions, and also before sqlite, so this works for now.
acinclude.m4