# $Id: Makefile.PL,v 1.2 2005-02-21 23:49:42 dstuart Exp $ ############################################################################### # # File: Makefile.PL # # Author: Damien S. Stuart # # Purpose: Makefile.PL for the Authen::Krb5::Simple module. # ############################################################################### # use lib 'inc'; use Devel::CheckLib; use ExtUtils::MakeMaker; my ($krb5_inc, $krb5_lib); # Places we might find Kerberos5 libs. # my @krb_lib_dirs = qw( /usr/lib64 /usr/lib /usr/local/lib64 /usr/local/lib /usr/lib64/krb5 /usr/lib/krb5 /usr/local/lib64/krb5 /usr/local/lib/krb5 /usr/lib64/krb /usr/lib/krb /usr/local/lib64/krb /usr/local/lib/krb /opt/krb5/lib64 /opt/krb5/lib /opt/krb/lib64 /opt/krb/lib /usr/heimdal/lib64 /usr/heimdal/lib /usr/local/heimdal/lib64 /usr/local/heimdal/lib /opt/heimdal/lib64 /opt/heimdal/lib ); # If the ENV vars are specified, use them. # if(exists($ENV{KRB5_INCLUDE})) { $krb5_inc = "-I$ENV{KRB5_INCLUDE}"; } if(exists($ENV{KRB5_LIB})) { $krb5_lib = "-L$ENV{KRB5_LIB}"; unshift(@krb_lib_dirs, $ENV{KRB5_LIB}); } # See if the needed libs are available. Take a shot at several "possible" # locations for these libs. # check_lib_or_exit( lib => [qw( krb5 k5crypto com_err )], libpath => \@kr_lib_dirs ); # Write out the Makefile # WriteMakefile( 'NAME' => 'Authen::Krb5::Simple', 'VERSION_FROM' => 'lib/Authen/Krb5/Simple.pm', 'PREREQ_PM' => {}, ($] >= 5.006 ? ( ABSTRACT => 'Perl module that performs Kerberos 5 authentication', AUTHOR => 'Damien S. Stuart ') : () ), 'LIBS' => ["$krb5_lib -lkrb5 -lk5crypto"], 'DEFINE' => '', 'INC' => $krb5_inc, ); ###EOF###