summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/ext/POSIX/Makefile.PL
blob: 5127b4d908c72bfed8e204e6b0a78a8c31040e8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# $FreeBSD$
use ExtUtils::MakeMaker;
use Config;
my @libs;
if ($^O ne 'MSWin32') {
    @libs = ('LIBS' => ["-lm -lposix -lcposix"]);
}
WriteMakefile(
    NAME	=> 'POSIX',
    @libs,
    MAN3PODS 	=> {}, 	# Pods will be built by installman.
    XSPROTOARG => '-noprototypes', 		# XXX remove later?
    VERSION_FROM => 'POSIX.pm', 
);
OpenPOWER on IntegriCloud