|
print STDERR "Using compatibility macros/routines for Perl 5.004\n"
if ($] < 5.0045);
WriteMakefile(
'NAME' => 'installation' ,
'DISTNAME' => 'Aw' ,
'VERSION_FROM' => 'lib/Aw.pm' ,
'DEFINE' =>
($] < 5.0045 ? '-DPERL5004_COMPAT -DAWXS_WARNS' : '-DAWXS_WARNS' ),
'PREREQ_PM' => { 'CORBA::LongLong' => 0 },
dist => {
COMPRESS => "gzip -9f" ,
SUFFIX => "gz" ,
POSTOP => 'mv $(DISTNAME)-$(VERSION).tar.gz ../'
},
AUTHOR => "Daniel Yacob <Yacob\@wMUsers.Com>" ,
ABSTRACT => "Interface to the ActiveWorks Libraries." ,
);
|