This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[DOC PATCH] threads.pm, threads->tid in DESTROY bug
[perl5.git] / ext / threads / Makefile.PL
CommitLineData
fc6e75a2
AB
1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4
fc6e75a2
AB
5WriteMakefile(
6 'NAME' => 'threads',
7 'VERSION_FROM' => 'threads.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 => 'threads.pm', # retrieve abstract from module
11 AUTHOR => 'Artur Bergman <artur@contiller.se>') : ()),
0665918f 12 'MAN3PODS' => {}, # Pods will be built by installman
fc6e75a2
AB
13 'LIBS' => [''], # e.g., '-lm'
14 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
15 # Insert -I. if you add *.h files later:
16# 'INC' => '', # e.g., '-I/usr/include/other'
17 # Un-comment this if you add C files to link with later:
18 # 'OBJECT' => '$(O_FILES)', # link all the C files too
19);
20