File: Makefile.PL

package info (click to toggle)
slash 2.2.6-8etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 3,672 kB
  • ctags: 1,915
  • sloc: perl: 23,113; sql: 1,878; sh: 433; makefile: 233
file content (28 lines) | stat: -rw-r--r-- 661 bytes parent folder | download | duplicates (3)
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
package Slash::Apache::User;
use ExtUtils::MakeMaker;

use Apache::ExtUtils qw (command_table);
use Apache::src ();

my @directives = (
	{ name      => 'SlashEnableENV',
		errmsg      => 'Takes a flag that is either on or off (off by default)',
		args_how    => 'FLAG',
		req_overrive => 'ACCESS_CONF'
	},
	{ name      => 'SlashAuthAll',
		errmsg      => 'Takes a flag that is either on or off (off by default)',
		args_how    => 'FLAG',
		req_overrive => 'ACCESS_CONF'
	}

);

command_table(\@directives);


WriteMakefile(
	'NAME'	=> 'Slash::Apache::User',
	'VERSION_FROM' => 'User.pm',
	'INC'       => Apache::src->new->inc . ' -I/usr/include/apache-1.3',
);