File: INSTALL

package info (click to toggle)
libapache2-mod-perl2 2.0.13-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 12,016 kB
  • sloc: perl: 97,771; ansic: 14,493; makefile: 51; sh: 18
file content (40 lines) | stat: -rw-r--r-- 943 bytes parent folder | download | duplicates (2)
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
Simple install:

  % perl Makefile.PL MP_APXS=/usr/local/apache2/bin/apxs
  % make && make test
  % make install

Simple install on AIX:

  You will need GNU make to compile mod_perl. The AIX make does not work.
  If you have installed GNU make from the AIX Toolbox:

  % export MAKE="/opt/freeware/bin/gmake"
  % perl Makefile.PL MP_APXS=/usr/local/apache2/bin/apxs
  % gmake && gmake test
  % gmake install

Simple config:

  LoadModule perl_module modules/mod_perl.so
  #PerlModule Apache::compat
  # your config comes here

For a more detailed version (including more options) refer to:

  docs/user/intro/start_fast.pod

or online:

  http://perl.apache.org/docs/2.0/user/intro/start_fast.html

For an even more detailed documentation refer to:

  docs/user/install/install.pod
  docs/user/config/config.pod

or online:

  http://perl.apache.org/docs/2.0/user/install/install.pod
  http://perl.apache.org/docs/2.0/user/config/config.pod