threads::shared::queue and semaphore become Thread::Semaphore
[p5sagit/p5-mst-13.2.git] / ext / threads / shared / Makefile.PL
index 8587906..18ac115 100755 (executable)
@@ -2,20 +2,17 @@ use ExtUtils::MakeMaker;
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.
 
-use Config;
-
-
-unless($Config{'useithreads'} eq 'define') {
-    die "We need a perl that is built with USEITHREAD!\n";
-}
-
 WriteMakefile(
     'NAME'             => 'threads::shared',
     'VERSION_FROM'     => 'shared.pm', # finds $VERSION
+             'PM' => {
+                 'shared.pm'    => '$(INST_LIBDIR)/shared.pm',
+             },
     'PREREQ_PM'                => {}, # e.g., Module::Name => 1.1
     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
       (ABSTRACT_FROM => 'shared.pm', # retrieve abstract from module
        AUTHOR     => 'Arthur Bergman <arthur@contiller.se>') : ()),
+    'MAN3PODS'         => {},  # Pods will be built by installman
     'LIBS'             => [''], # e.g., '-lm'
     'DEFINE'           => '', # e.g., '-DHAVE_SOMETHING'
        # Insert -I. if you add *.h files later: