From: Jan Dubois <jand@activestate.com>
Date: Mon, 12 Nov 2007 12:04:46 +0000 (-0800)
Subject: RE: 5.10 code freeze and dual-life modules
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f9f7a334084020b61a4116a8c8f842b1f027ab83;p=p5sagit%2Fp5-mst-13.2.git

RE: 5.10 code freeze and dual-life modules
From: "Jan Dubois" <jand@activestate.com>
Message-ID: <024101c82567$46ffd650$d4ff82f0$@com>

p4raw-id: //depot/perl@32300
---

diff --git a/ext/Win32/Makefile.PL b/ext/Win32/Makefile.PL
index 114a0a2..84c9b87 100644
--- a/ext/Win32/Makefile.PL
+++ b/ext/Win32/Makefile.PL
@@ -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";
 
diff --git a/ext/Win32/Win32.pm b/ext/Win32/Win32.pm
index 6c18a23..4519d2e 100644
--- a/ext/Win32/Win32.pm
+++ b/ext/Win32/Win32.pm
@@ -8,7 +8,7 @@ BEGIN {
     require DynaLoader;
 
     @ISA = qw|Exporter DynaLoader|;
-    $VERSION = '0.32_01';
+    $VERSION = '0.33';
     $XS_VERSION = $VERSION;
     $VERSION = eval $VERSION;