Skip to content

Commit 44d71ec

Browse files
committed
Make sure Win32.xs uses winsock2.h and not winsock.h
This is important because ws2tcpip.h from the latest MinGW release will throw an error unless winsock2.h is being used. [rt#94730] Release as Win32-0.49
1 parent 4aef793 commit 44d71ec

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Revision history for the Perl extension Win32.
22

3+
0.49 [2014-04-15]
4+
- Make sure Win32.xs uses winsock2.h and not winsock.h. [rt#94730]
5+
36
0.48 [2013-11-20]
47
- Typo fixes by David Steinbrunner.
58
- Fix required perl version 5.6 -> 5.006.

META.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
--- #YAML:1.0
22
name: Win32
33
abstract: Interfaces to some Win32 API Functions
4-
version: 0.48
4+
version: 0.49
55
author:
66
- Jan Dubois <[email protected]>
77
license: perl

Win32.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package Win32;
88
require DynaLoader;
99

1010
@ISA = qw|Exporter DynaLoader|;
11-
$VERSION = '0.48';
11+
$VERSION = '0.49';
1212
$XS_VERSION = $VERSION;
1313
$VERSION = eval $VERSION;
1414

Win32.xs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#define WIN32_LEAN_AND_MEAN
12
#include <wctype.h>
23
#include <windows.h>
34
#include <shlobj.h>

0 commit comments

Comments
 (0)