From: pop Date: Tue, 15 Apr 2003 20:40:56 +0000 (+0000) Subject: Added prerequisites X-Git-Tag: ZEBRA.1.3.11~17 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=40333aa22cb4feca08c2d839c0b0773670f0e6a0 Added prerequisites --- diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in index 70019e3..5ead531 100644 --- a/perl/Makefile.PL.in +++ b/perl/Makefile.PL.in @@ -1,11 +1,16 @@ use ExtUtils::MakeMaker; WriteMakefile( - 'NAME' => 'IDZebra', - 'OBJECT' => 'IDZebra_wrap.o zebra_perl.o' , - 'INC' => "-I../index -I../include @YAZINC@", - 'LIBS' => "-L../index -lzebra -L../data1 -ldata1 @TCL_LIB@ @YAZLIB@ @ZPERL_LIBS@", - 'OPTIMIZE' => '-g -O2' - + 'NAME' => 'IDZebra', + 'OBJECT' => 'IDZebra_wrap.o zebra_perl.o' , + 'INC' => "-I../index -I../include @YAZINC@", + 'LIBS' => "-L../index -lzebra -L../data1 -ldata1 @TCL_LIB@ @YAZLIB@ @ZPERL_LIBS@", + 'OPTIMIZE' => '-g', + 'PREREQ_FATAL' => 1, + 'PREREQ_PM' => { + 'Scalar::Util' => '1.0', + 'Test::More' => '0.45', + } + );