|
1 # TWiki Enterprise Collaboration Platform, http://TWiki.org/ |
|
2 # |
|
3 # This program is free software; you can redistribute it and/or |
|
4 # modify it under the terms of the GNU General Public License |
|
5 # as published by the Free Software Foundation; either version 2 |
|
6 # of the License, or (at your option) any later version. For |
|
7 # more details read LICENSE in the root of this distribution. |
|
8 # |
|
9 # This program is distributed in the hope that it will be useful, |
|
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
12 # |
|
13 # LocalLib.cfg: local path settings for TWiki |
|
14 |
|
15 use vars qw( $twikiLibPath $CPANBASE ); |
|
16 |
|
17 #development and debugging settings |
|
18 #$ENV{TWIKI_ASSERTS} = 1; |
|
19 #$ENV{TWIKI_MONITOR} = 1; |
|
20 |
|
21 # -------------- Path to lib directory containing TWiki.pm. |
|
22 # |
|
23 # REQUIRED |
|
24 # The absolute path to the 'lib' directory in your installation.. |
|
25 |
|
26 $twikiLibPath = "/absolute/path/to/your/lib"; |
|
27 |
|
28 |
|
29 # -------------- Extra path components to include in @INC |
|
30 # OPTIONAL |
|
31 # If you need to use perl modules that are not installed in the standard |
|
32 # directories (e.g. you have downloaded extra modules for use with plugins) |
|
33 # then you can add the absolute paths to those modules below. You can list |
|
34 # as many directories as you want, separated by commas. |
|
35 |
|
36 # @localPerlLibPath = ( '/path/to/dir' ); |
|
37 |
|
38 # http://www.perl.com/pub/a/2002/04/10/mod_perl.html?page=3 has good advice |
|
39 # on installing CPAN modules without superuser privileges. |
|
40 |
|
41 |
|
42 1; # Required for successful module loading |