Bug 8148 - LDAP auth_by_bind doesn't fallback to local auth
[koha.git] / misc / kohalib.pl
blobe0add492b028c2b12af455ff556f83a0f0e8b459
1 #!/usr/bin/perl
3 # Copyright (C) 2007 LibLime
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 # This script is used by command-line utilities to set
21 # @INC properly -- specifically, to point to the directory
22 # containing the installed version of the C4 modules.
24 # This depends on the installer replacing the \_\_PERL_MODULE_DIR\_\_
25 # string with the path to the Koha modules directory. This is done
26 # only during a 'standard' or 'single' mode installation. If Koha
27 # is being run from a git checkout (and thus installed in 'dev' mode),
28 # this is a no-op.
30 # To use this script, a command-line utility should do the following before
31 # 'use'ing any C4 modules.
33 # BEGIN {
34 # use FindBin;
35 # eval { require "$FindBin::Bin/kohalib.pl" };
36 # # adjust path to point to kohalib.pl relative
37 # # to location of script
38 # }
41 use strict;
42 #use warnings; FIXME - Bug 2505
44 my $module_dir;
45 BEGIN {
46 $module_dir = '__PERL_MODULE_DIR__';
47 die if $module_dir =~ /^[_]{2}PERL_MODULE_DIR[_]{2}$/;
50 use lib $module_dir;