Removed LEN, and updated the documentation.
[simpleserver-moved-to-github.git] / 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
5 my $libs = `yaz-config --libs` || die "ERROR: Unable to call script: yaz-config";
6
7 WriteMakefile(
8     'NAME'      => 'Net::Z3950::SimpleServer',
9     'VERSION_FROM' => 'SimpleServer.pm', # finds $VERSION
10     'LIBS'      => [$libs],   # e.g., '-lm' 
11     'DEFINE'    => '',     # e.g., '-DHAVE_SOMETHING' 
12     'INC'       => '',     # e.g., '-I/usr/include/other' 
13 );