File: bootp3.src.in

package info (click to toggle)
wml 2.0.12ds1-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,432 kB
  • ctags: 116
  • sloc: perl: 5,634; sh: 3,663; makefile: 1,004
file content (50 lines) | stat: -rw-r--r-- 959 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
##
##  wml::sys::bootp3 -- WML Bootstrap Code for pass 3 (ePerl)
##  Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved. 
##
<:
BEGIN {
    #   don't use "use lib" here because this leads to conflict 
    #   warnings from "lib.pm" when using a Perl runtime system
    #   which is different from the one used under compile time.
    unshift @INC, qw(
        @INSTALLPRIVLIB@
        @INSTALLARCHLIB@
    );

    # get rid of nasty warnings
    $^W = 0;
}
:>\
##EOF##
__END__

=head1 NAME

wml::sys::bootp3 - WML Bootstrap Code for Pass 3

=head1 SYNOPSIS

I<No synopsis, because this is automatically included by WML on startup.>

=head1 DESCRIPTION

This include file currently just bootstraps the (perhaps) privately installed
Perl 5 modules of WML which stay below F<@libdir@@libsubdir@/perl/>.

=head1 AUTHOR

 Ralf S. Engelschall
 rse@engelschall.com
 www.engelschall.com

=head1 REQUIRES

P3

=head1 SEE ALSO

wml_p3_eperl(1), perl(1)

=cut