From: Jarkko Hietaniemi Date: Wed, 1 May 2002 21:17:55 +0000 (+0000) Subject: Until Arthur fills in semaphore.t. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d79f67b6f37177f3579355c947ebb22716ee8ebc;p=p5sagit%2Fp5-mst-13.2.git Until Arthur fills in semaphore.t. p4raw-id: //depot/perl@16318 --- diff --git a/ext/threads/shared/Makefile.PL b/ext/threads/shared/Makefile.PL index 0179e33..aa9faa6 100755 --- a/ext/threads/shared/Makefile.PL +++ b/ext/threads/shared/Makefile.PL @@ -6,9 +6,9 @@ WriteMakefile( 'NAME' => 'threads::shared', 'VERSION_FROM' => 'shared.pm', # finds $VERSION 'PM' => { - 'shared.pm' => '$(INST_LIBDIR)/shared.pm', - 'queue.pm' => '$(INST_LIBDIR)/shared/queue.pm', - + 'shared.pm' => '$(INST_LIBDIR)/shared.pm', + 'queue.pm' => '$(INST_LIBDIR)/shared/queue.pm', + 'semaphore.pm' => '$(INST_LIBDIR)/shared/semaphore.pm', }, 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 diff --git a/ext/threads/shared/t/semaphore.t b/ext/threads/shared/t/semaphore.t index e69de29..b1858ec 100644 --- a/ext/threads/shared/t/semaphore.t +++ b/ext/threads/shared/t/semaphore.t @@ -0,0 +1,5 @@ +print "1..1\n"; +use threads; +use threads::shared::semaphore; +print "ok 1\n"; +