Fix makefile to put queue.pm correctly, update test script.
[p5sagit/p5-mst-13.2.git] / ext / threads / shared / Makefile.PL
1 use ExtUtils::MakeMaker;
2 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
3 # the contents of the Makefile that is written.
4
5 WriteMakefile(
6     'NAME'              => 'threads::shared',
7     'VERSION_FROM'      => 'shared.pm', # finds $VERSION
8               'PM' => {
9                   'shared.pm' => '$(INST_LIBDIR)/shared.pm',
10                   'queue.pm' => '$(INST_LIBDIR)/shared/queue.pm',
11
12               },
13     'PREREQ_PM'         => {}, # e.g., Module::Name => 1.1
14     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
15       (ABSTRACT_FROM => 'shared.pm', # retrieve abstract from module
16        AUTHOR     => 'Arthur Bergman <arthur@contiller.se>') : ()),
17     'MAN3PODS'          => {},  # Pods will be built by installman
18     'LIBS'              => [''], # e.g., '-lm'
19     'DEFINE'            => '', # e.g., '-DHAVE_SOMETHING'
20         # Insert -I. if you add *.h files later:
21     'INC'               => '', # e.g., '-I/usr/include/other'
22         # Un-comment this if you add C files to link with later:
23     # 'OBJECT'          => '$(O_FILES)', # link all the C files too
24
25 );