forked from perl-ldap/perl-ldap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
63 lines (52 loc) · 1.49 KB
/
Makefile.PL
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
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- perl -*-
use inc::Module::Install;
perl_version 5.008;
name ('perl-ldap');
module_name ('Net::LDAP');
author ('Graham Barr <[email protected]>');
version_from ('lib/Net/LDAP.pm');
license ('perl');
abstract ('LDAP client library');
resources homepage => 'http://ldap.perl.org/';
resources repository => 'http://git.goingon.net/?p=perl-ldap.git;a=summary';
resources MailingList => 'http://lists.cpan.org/showlist.cgi?name=perl-ldap';
resources ListArchive => 'http://perl.markmail.org/search/list:perl-ldap';
sign(1);
check_nmake(); # check and download nmake.exe for Win32
requires ( 'Convert::ASN1' => 0.07);
include_deps ('Test::More');
include ('ExtUtils::AutoInstall');
features(
'SASL authentication' => [
-default => 0,
'Authen::SASL' => '2.00',
#recommends('Digest::MD5'), # for DIGEST-MD5 SASL mech
#recommends('Digest::HMAC_MD5'), # for CRAM-MD5 SASL mech
#recommends('GSSAPI'), # for GSSAPI SASL mech
],
'LDAP URLs' => [
-default => 0,
'URI::ldap' => 1.10,
],
'LDAPS' => [
-default => 0,
'IO::Socket::SSL' => 0.93,
],
'Read/Write DSML files' => [
-default => 0,
'MIME::Base64' => 0,
'XML::SAX::Writer' => 0,
# dependencies of XML::SAX::Writer:
#'Text::Iconv' => 0,
#'XML::Filter::BufferText' => 0,
#'XML::SAX' => 0,
#'XML::NamespaceSupport' => 0,
#'File::Temp' => 0
],
'Read/Write LDIF files' => [
-default => 0,
'MIME::Base64' => 0,
],
);
auto_install_now();
WriteAll;