forked from civicrm/civicrm-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
peclcmd.php
41 lines (39 loc) · 914 Bytes
/
peclcmd.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* PEAR, the PHP Extension and Application Repository
*
* Command line interface
*
* PHP versions 4 and 5
*
* @category pear
* @package PEAR
* @author Stig Bakken <[email protected]>
* @author Tomas V.V.Cox <[email protected]>
* @copyright 1997-2009 The Authors
* @license http://opensource.org/licenses/bsd-license.php New BSD License
* @version CVS: $Id: peclcmd.php 276392 2009-02-25 00:06:23Z dufuz $
* @link http://pear.php.net/package/PEAR
*/
/**
* @nodep Gtk
*/
if ('packages' != '@'.'include_path'.'@') {
ini_set('include_path', 'packages');
$raw = false;
} else {
// this is a raw, uninstalled pear, either a cvs checkout, or php distro
$raw = true;
}
define('PEAR_RUNTYPE', 'pecl');
require_once 'pearcmd.php';
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: nil
* mode: php
* End:
*/
// vim600:syn=php
?>