]> git.ipfire.org Git - thirdparty/openssl.git/blob - perl/Makefile.PL
Import of old SSLeay release: SSLeay 0.9.0b
[thirdparty/openssl.git] / perl / Makefile.PL
1 use ExtUtils::MakeMaker;
2 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
3 # the contents of the Makefile that is written.
4 WriteMakefile(
5 'OPTIMIZE' => '-g',
6 'DISTNAME' => 'SSLeay-perl5-0.8.5',
7 'NAME' => 'SSLeay',
8 'VERSION_FROM' => 'SSLeay.pm',
9 'LIBS' => ['-L.. -lssl -lcrypto'],
10 'DEFINE' => '',
11 'INC' => '-I../include',
12 'C' => ['callback.c'],
13 'H' => ['p5SSLeay.h'],
14 'OBJECT' => " SSLeay.o bio.o bn.o cipher.o digest.o err.o
15 ssl.o x509.o",
16 'XS' => { 'SSLeay.xs' => 'SSLeay.c',
17 'bio.xs' => 'bio.c',
18 'bn.xs' => 'bn.c',
19 'cipher.xs' => 'cipher.c',
20 'digest.xs' => 'digest.c',
21 'err.xs' => 'err.c',
22 'ssl.xs' => 'ssl.c',
23 'x509.xs' => 'x509.c',
24 }
25 );