1# use 5.010000;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    NAME              => 'Net::HandlerSocket',
7    VERSION_FROM      => 'lib/Net/HandlerSocket.pm', # finds $VERSION
8    PREREQ_PM         => {}, # e.g., Module::Name => 1.1
9    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
10      (ABSTRACT_FROM  => 'lib/Net/HandlerSocket.pm', # retrieve abstract from module
11       AUTHOR         => 'higuchi dot akira at dena dot jp>') : ()),
12    CC                => 'g++ -fPIC',
13    LD                => 'g++ -fPIC',
14    LIBS              => ['-L../libhsclient -L../libhsclient/.libs -lhsclient'],
15    DEFINE            => '',
16    INC               => '-I. -I../libhsclient',
17    OPTIMIZE          => '-g -O3 -Wall -Wno-unused',
18);
19