OSDN Git Service

*** empty log message ***
[nucleus-jp/nucleus-plugins.git] / trunk / sharedlibs / sharedlibs / sharedlibs.php
1 <?php
2 // vim: tabstop=2:shiftwidth=2
3
4 /**
5   * sharedlibs.php ($Revision: 1.2 $)
6   * 
7   * by hsur ( http://blog.cles.jp/np_cles )
8   * $Id: sharedlibs.php,v 1.2 2007-03-06 20:55:28 hsur Exp $
9 */
10
11 /*
12   * Copyright (C) 2006 CLES. All rights reserved.
13   *
14   * This program is free software; you can redistribute it and/or
15   * modify it under the terms of the GNU General Public License
16   * as published by the Free Software Foundation; either version 2
17   * of the License, or (at your option) any later version.
18   * 
19   * This program is distributed in the hope that it will be useful,
20   * but WITHOUT ANY WARRANTY; without even the implied warranty of
21   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22   * GNU General Public License for more details.
23   * 
24   * You should have received a copy of the GNU General Public License
25   * along with this program; if not, write to the Free Software
26   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
27   * 
28   * In addition, as a special exception, cles( http://blog.cles.jp/np_cles ) gives
29   * permission to link the code of this program with those files in the PEAR
30   * library that are licensed under the PHP License (or with modified versions
31   * of those files that use the same license as those files), and distribute
32   * linked combinations including the two. You must obey the GNU General Public
33   * License in all respects for all of the code used other than those files in
34   * the PEAR library that are licensed under the PHP License. If you modify
35   * this file, you may extend this exception to your version of the file,
36   * but you are not obligated to do so. If you do not wish to do so, delete
37   * this exception statement from your version.
38 */
39
40 if (!defined('NP_SHAREDLIBS_LOADED')) {
41         if (!defined('PATH_SEPARATOR')) {
42                 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
43                         define('PATH_SEPARATOR', ';');
44                 } else {
45                         define('PATH_SEPARATOR', ':');
46                 }
47         }
48         ini_set('include_path', dirname(__FILE__).PATH_SEPARATOR.ini_get('include_path'));
49
50         define('NP_SHAREDLIBS_LOADED', true);
51 }