From f9f7a334084020b61a4116a8c8f842b1f027ab83 Mon Sep 17 00:00:00 2001 From: Jan Dubois Date: Mon, 12 Nov 2007 04:04:46 -0800 Subject: [PATCH] RE: 5.10 code freeze and dual-life modules From: "Jan Dubois" Message-ID: <024101c82567$46ffd650$d4ff82f0$@com> p4raw-id: //depot/perl@32300 --- ext/Win32/Makefile.PL | 4 ++++ ext/Win32/Win32.pm | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; -- 2.7.4