]> git.mxchange.org Git - friendica.git/blob - vendor/pear-pear.php.net/PEAR/peclcmd.php
affb0cbbc431f8b39f7d05c2a33cec076d09584a
[friendica.git] / vendor / pear-pear.php.net / PEAR / peclcmd.php
1 <?php
2 /**
3  * PEAR, the PHP Extension and Application Repository
4  *
5  * Command line interface
6  *
7  * PHP versions 4 and 5
8  *
9  * @category   pear
10  * @package    PEAR
11  * @author     Stig Bakken <ssb@php.net>
12  * @author     Tomas V.V.Cox <cox@idecnet.com>
13  * @copyright  1997-2009 The Authors
14  * @license    http://opensource.org/licenses/bsd-license.php New BSD License
15  * @link       http://pear.php.net/package/PEAR
16  */
17
18 /**
19  * @nodep Gtk
20  */
21 //the space is needed for windows include paths with trailing backslash
22 // http://pear.php.net/bugs/bug.php?id=19482
23 if ('D:\Projects\Friendica\friendica\friendica\vendor/pear-pear.php.net/PEAR ' != '@'.'include_path'.'@ ') {
24     ini_set('include_path', trim('D:\Projects\Friendica\friendica\friendica\vendor/pear-pear.php.net/PEAR '). PATH_SEPARATOR .  get_include_path());
25     $raw = false;
26 } else {
27     // this is a raw, uninstalled pear, either a cvs checkout, or php distro
28     $raw = true;
29 }
30 define('PEAR_RUNTYPE', 'pecl');
31 require_once 'pearcmd.php';
32 /*
33  * Local variables:
34  * tab-width: 4
35  * c-basic-offset: 4
36  * indent-tabs-mode: nil
37  * mode: php
38  * End:
39  */
40 // vim600:syn=php
41
42 ?>