Subversion Repositories gelsvn

Rev

Rev 198 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 198 Rev 217
Line 3... Line 3...
3
    if 0;
3
    if 0;
4
 
4
 
5
# ******************************************************************
5
# ******************************************************************
6
#      Author: Chad Elliott
6
#      Author: Chad Elliott
7
#        Date: 6/17/2002
7
#        Date: 6/17/2002
8
#         $Id: mpc.pl 198 2005-12-15 11:30:53Z bj $
8
#         $Id: mpc.pl 217 2006-05-05 09:35:48Z bj $
9
# ******************************************************************
9
# ******************************************************************
10
 
10
 
11
# ******************************************************************
11
# ******************************************************************
12
# Pragma Section
12
# Pragma Section
13
# ******************************************************************
13
# ******************************************************************
14
 
14
 
15
use strict;
15
use strict;
16
use Cwd;
-
 
17
use Config;
16
use Config;
18
use FindBin;
17
use FindBin;
-
 
18
use File::Spec;
19
use File::Basename;
19
use File::Basename;
20
 
20
 
21
my($basePath) = $FindBin::Bin;
21
my($basePath) = $FindBin::Bin;
-
 
22
if ($^O eq 'VMS') {
-
 
23
  $basePath = File::Spec->rel2abs(dirname($0)) if ($basePath eq '');
-
 
24
  $basePath = VMS::Filespec::unixify($basePath);
-
 
25
}
22
unshift(@INC, $basePath . '/modules');
26
unshift(@INC, $basePath . '/modules');
23
 
27
 
24
require MPC;
28
require MPC;
25
 
29
 
26
# ************************************************************
30
# ************************************************************