File: Makefile.PL

package info (click to toggle)
libunix-syslog-perl 1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 116 kB
  • sloc: perl: 188; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;

die 'OS unsupported' if ($^O eq 'MSWin32');

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'Unix::Syslog',
    'VERSION_FROM' => 'Syslog.pm', # finds $VERSION
    'LIBS'	=> ['-lc'],   # e.g., '-lm' 
    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING' 
#    'DEFINE'	=> '-DSYSLOG_NAMES',
    'INC'	=> '',     # e.g., '-I/usr/include/other' 
);