diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2014-04-15 20:54:01 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2014-04-15 20:54:01 +0100 |
commit | 7432779b54fc5210793c84f9b87b6968ef4c5f51 (patch) | |
tree | affdc425d3a9bc85eca7a2c8893d09c5f42d4e68 /cpan/Win32 | |
parent | 25fdf527591b902c99f699bb9d51d4f6ce49a6fc (diff) | |
download | perl-7432779b54fc5210793c84f9b87b6968ef4c5f51.tar.gz |
Upgrade Win32 from version 0.48 to 0.49
This fixes the build with gcc-4.8.1 from http://www.mingw.org and thus
resolves perl #121643.
Diffstat (limited to 'cpan/Win32')
-rw-r--r-- | cpan/Win32/Win32.pm | 2 | ||||
-rw-r--r-- | cpan/Win32/Win32.xs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/cpan/Win32/Win32.pm b/cpan/Win32/Win32.pm index 7d933039eb..027af0e0b5 100644 --- a/cpan/Win32/Win32.pm +++ b/cpan/Win32/Win32.pm @@ -8,7 +8,7 @@ package Win32; require DynaLoader; @ISA = qw|Exporter DynaLoader|; - $VERSION = '0.48'; + $VERSION = '0.49'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/cpan/Win32/Win32.xs b/cpan/Win32/Win32.xs index 1f573eb1b0..b47df40d14 100644 --- a/cpan/Win32/Win32.xs +++ b/cpan/Win32/Win32.xs @@ -1,3 +1,4 @@ +#define WIN32_LEAN_AND_MEAN #include <wctype.h> #include <windows.h> #include <shlobj.h> |