ssb Thu Mar 15 21:13:00 2001 EDT
Added files:
/pear/PEAR PEAR.php
Log:
by putting this dir before $prefix/lib/php in your include_path, you
will use the C version of PEAR and PEAR_Error
Index: pear/PEAR/PEAR.php
+++ pear/PEAR/PEAR.php
<?php
// To use the C version of PEAR/PEAR_Error, put the directory where
// this file is before $prefix/lib/php in your include_path.
//
if (!extension_loaded("PEAR")) {
if (substr(PHP_OS, 0, 3) == "WIN") {
dl("php_pear.dll");
} else {
dl("PEAR.so");
}
}
?>
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]