~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to plugin/handler_socket/perl-Net-HandlerSocket/Makefile.PL.installed

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# use 5.010000;
 
2
use ExtUtils::MakeMaker;
 
3
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
 
4
# the contents of the Makefile that is written.
 
5
WriteMakefile(
 
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              => ['-lhsclient'], # e.g., '-lm'
 
15
    DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
 
16
    INC               => '-I. -I/usr/include/handlersocket -I/usr/include/mysql',
 
17
    OPTIMIZE          => '-g -O3 -Wall -Wno-unused',
 
18
        # Un-comment this if you add C files to link with later:
 
19
    # OBJECT            => '$(O_FILES)', # link all the C files too
 
20
);