Initial repo created
[timetracker.git] / WEB-INF / lib / pear / scripts / 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  * @version    CVS: $Id: peclcmd.php 313023 2011-07-06 19:17:11Z dufuz $
16  * @link       http://pear.php.net/package/PEAR
17  */
18
19 /**
20  * @nodep Gtk
21  */
22 if ('@include_path@' != '@'.'include_path'.'@') {
23     ini_set('include_path', '@include_path@');
24     $raw = false;
25 } else {
26     // this is a raw, uninstalled pear, either a cvs checkout, or php distro
27     $raw = true;
28 }
29 define('PEAR_RUNTYPE', 'pecl');
30 require_once 'pearcmd.php';
31 /*
32  * Local variables:
33  * tab-width: 4
34  * c-basic-offset: 4
35  * indent-tabs-mode: nil
36  * mode: php
37  * End:
38  */
39 // vim600:syn=php
40
41 ?>