|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-10-10 13:10 UTC] cox@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 14:00:01 2025 UTC |
the pear installer should check to see if an extension that is about to be installed is actually being used example: xdebug extension is loaded in php.ini pear install -f xdebug....tgz while segfault when the .so is copied to the php extension directory. doing a simple php -r 'copy('.....xdebug.so','/usr/share/php/xdebug.so');' will cause a bus error. It may be worth adding to the package xml description <provides_extension>xdebug</provides_extension> and doing a extension_loaded() check prior to running ./configure.