~percona-dev/percona-server/release-5.5.11-20.2-fix-bug-764138

« back to all changes in this revision

Viewing changes to HandlerSocket-Plugin-for-MySQL/perl-Net-HandlerSocket/Makefile.PL.installed

  • Committer: Ignacio Nin
  • Date: 2011-03-13 17:18:23 UTC
  • mfrom: (33.3.17 release-5.5.8-20)
  • Revision ID: ignacio.nin@percona.com-20110313171823-m06xs104nekulywb
Merge changes from release-5.5.8-20 to 5.5.9

Merge changes from the release branch of 5.5.8 to 5.5.9. These include
the HandlerSocket and UDF directories and the building scripts.

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',
 
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
);