mirror of
https://github.com/imapsync/imapsync.git
synced 2025-08-05 16:28:04 +02:00
14 lines
422 B
Perl
14 lines
422 B
Perl
#!/usr/bin/perl
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
#
|
|
|
|
WriteMakefile(
|
|
'NAME' => 'Authen::NTLM',
|
|
'DIR' => ['DES', 'MD4'],
|
|
'VERSION_FROM' => 'NTLM.pm',
|
|
'PREREQ_PM' => { 'MIME::Base64' => 0, 'Digest::HMAC_MD5' => 0 },
|
|
($] >= 5.005 ? ## Add these new keywords supported since 5.005
|
|
('AUTHOR' => 'David (Buzz) Bussenschutt <davidbuzz@gmail.com>, Mark Bush <Mark.Bush@bushnet.demon.co.uk>') : ()),
|
|
);
|