Until Arthur fills in semaphore.t.
Jarkko Hietaniemi [Wed, 1 May 2002 21:17:55 +0000 (21:17 +0000)]
p4raw-id: //depot/perl@16318

ext/threads/shared/Makefile.PL
ext/threads/shared/t/semaphore.t

index 0179e33..aa9faa6 100755 (executable)
@@ -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
index e69de29..b1858ec 100644 (file)
@@ -0,0 +1,5 @@
+print "1..1\n";
+use threads;
+use threads::shared::semaphore;
+print "ok 1\n";
+