Do not sv_free session handle if close handler is called
[simpleserver-moved-to-github.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 ## $Id: Makefile.PL,v 1.5 2004-06-05 23:09:04 adam Exp $
4
5 my $libs = `../yaz/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'       => '-I../yaz/include',     # e.g., '-I/usr/include/other' 
13 );