# TWiki Enterprise Collaboration Platform, http://TWiki.org/
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version. For
# more details read LICENSE in the root of this distribution.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# LocalLib.cfg: local path settings for TWiki

use vars qw( $twikiLibPath $CPANBASE );

#development and debugging settings
#$ENV{TWIKI_ASSERTS} = 1;

# ------------++ Path to lib directory containing TWiki.pm. 
# REQUIRED:
# The absolute path to the 'lib' directory in your installation..

$twikiLibPath = "/absolute/path/to/your/lib";

# ------------++ Path to TWiki's CPAN base.
# OPTIONAL:
# TWiki ships with some CPAN modules, such as File::Temp. They load after
# the default Perl libs. If you want to load them before the system libs,
# uncomment the following line.

# $CPANBASE = "$twikiLibPath/CPAN/lib/"; 

# ------------++ Extra path components to include in @INC
# OPTIONAL:
# If you need to use perl modules that are not installed in the standard
# directories (e.g. you have downloaded extra modules for use with plugins)
# then you can add the absolute paths to those modules below. You can list
# as many directories as you want, separated by commas.

# @localPerlLibPath = ( '/path/to/dir' );

# http://www.perl.com/pub/a/2002/04/10/mod_perl.html?page=3 has good advice
# on installing CPAN modules without superuser privileges.


1; # Required for successful module loading
