1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4WriteMakefile(
5    'NAME'              => 'Crypt::OpenSSL::Bignum',
6    'VERSION_FROM'      => 'Bignum.pm',
7    'PREREQ_PM'         => {},
8    'ABSTRACT_FROM'     => 'Bignum.pm', # retrieve abstract from module
9    'AUTHOR'            => 'Ian Robertson <iroberts@cpan.org>',
10    'LIBS'              => ['-lcrypto'],   # e.g., '-lm'
11    'DEFINE'	=> '-DPERL5 -DOPENSSL_NO_KRB5',
12    # perl-5.8/gcc-3.2 needs -DPERL5, and redhat9 likes -DOPENSSL_NO_KRB5
13    'INC'               => '',
14);
15