RE: 5.10 code freeze and dual-life modules
authorJan Dubois <jand@activestate.com>
Mon, 12 Nov 2007 12:04:46 +0000 (04:04 -0800)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Tue, 13 Nov 2007 09:22:44 +0000 (09:22 +0000)
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <024101c82567$46ffd650$d4ff82f0$@com>

p4raw-id: //depot/perl@32300

ext/Win32/Makefile.PL
ext/Win32/Win32.pm

index 114a0a2f5e4d21f2713e8245775c9e9e15e61e34..84c9b871ead8f12cecbc9eb4e1878c6d6b92d457 100644 (file)
@@ -1,6 +1,10 @@
 use 5.006;
 use ExtUtils::MakeMaker;
 
+unless ($^O eq "MSWin32" || $^O eq "cygwin") {
+    die "OS unsupported\n";
+}
+
 my @libs;
 push @libs, '-L/lib/w32api -lole32 -lversion' if $^O eq "cygwin";
 
index 6c18a23166d5562fcc59431d63093dbc1f609006..4519d2e19aa8d4b10af5391c9748070871722a8a 100644 (file)
@@ -8,7 +8,7 @@ BEGIN {
     require DynaLoader;
 
     @ISA = qw|Exporter DynaLoader|;
-    $VERSION = '0.32_01';
+    $VERSION = '0.33';
     $XS_VERSION = $VERSION;
     $VERSION = eval $VERSION;