Removed some cvs logging and added GPL headers.
[simpleserver-moved-to-github.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 ## $Id: Makefile.PL,v 1.3 2004-05-28 20:27:16 sondberg Exp $
4
5 my $libs = `yaz-config --libs threads` || 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 );