re-enable XML_RPC 1.4.0

This commit is contained in:
Greg Beaver 2005-08-17 21:30:46 +00:00
parent f286018dd0
commit 1dd48ca039
3 changed files with 21 additions and 11 deletions

View file

@ -115,9 +115,9 @@ class PEAR_Remote extends PEAR
$this->saveCache($_args, $result);
};
return $result;
} else {
return $this->raiseError("For this remote PEAR operation you need to load the xmlrpc extension");
}
if (!@include_once("XML/RPC.php")) {
return $this->raiseError("For this remote PEAR operation you need to install the XML_RPC package");
array_shift($args);
$server_host = $this->config->get('master_server');
$username = $this->config->get('username');

View file

@ -7,10 +7,10 @@
*/
$packages = array(
// required packages for the installer
"PEAR" => "1.3.5",
"PEAR" => "1.3.6",
"XML_RPC" => "1.4.0",
"Console_Getopt" => "1.2",
"Archive_Tar" => "1.3.1",
"Archive_Tar" => "1.3.2",
// required packages for the web frontend
"PEAR_Frontend_Web" => "0.4",

View file

@ -19,7 +19,7 @@
<maintainer>
<user>ssb</user>
<role>lead</role>
<name>Stig Sæther Bakken</name>
<name>Stig Bakken</name>
<email>stig@php.net</email>
</maintainer>
<maintainer>
@ -48,14 +48,12 @@
</maintainer>
</maintainers>
<release>
<version>1.3.5</version>
<date>2005-02-18</date>
<version>1.3.6</version>
<date>2005-08-16</date>
<state>stable</state>
<license>PHP License</license>
<notes>
* fix Bug #3505: pecl can't install PDO
* enhance pear run-tests dramatically
* fix Bug #3506: pear install should export the pear version into the environment
* Bump XML_RPC dependency to 1.4.0
</notes>
<provides type="class" name="OS_Guess" />
<provides type="class" name="System" />
@ -124,12 +122,24 @@
<dep type="php" rel="ge" version="4.2"/>
<dep type="pkg" rel="ge" version="1.1">Archive_Tar</dep>
<dep type="pkg" rel="ge" version="1.2">Console_Getopt</dep>
<dep type="ext" rel="has">xmlrpc</dep>
<dep type="pkg" rel="ge" version="1.4.0">XML_RPC</dep>
<dep type="ext" rel="has">xml</dep>
<dep type="ext" rel="has">pcre</dep>
<dep type="ext" rel="has" optional="yes">xmlrpc</dep>
</deps>
</release>
<changelog>
<release>
<version>1.3.5</version>
<date>2005-02-18</date>
<state>stable</state>
<license>PHP License</license>
<notes>
* fix Bug #3505: pecl can't install PDO
* enhance pear run-tests dramatically
* fix Bug #3506: pear install should export the pear version into the environment
</notes>
</release>
<release>
<version>1.3.1</version>
<date>2004-04-06</date>