Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9f0e84a

Browse files
committed
Change our WIN32 API version to be 5.01 (Windows XP), to bring in the proper
IPV6 headers in newer SDKs.
1 parent 0365058 commit 9f0e84a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/bin/pg_ctl/pg_ctl.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
66
*
7-
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.113 2009/09/02 02:40:52 tgl Exp $
7+
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.114 2009/09/07 11:22:12 mha Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -14,7 +14,7 @@
1414
* Need this to get defines for restricted tokens and jobs. And it
1515
* has to be set before any header from the Win32 API is loaded.
1616
*/
17-
#define _WIN32_WINNT 0x0500
17+
#define _WIN32_WINNT 0x0501
1818
#endif
1919

2020
#include "postgres_fe.h"

src/include/port/win32.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.89 2009/07/24 20:12:42 mha Exp $ */
1+
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.90 2009/09/07 11:22:12 mha Exp $ */
22

33
#if defined(_MSC_VER) || defined(__BORLANDC__)
44
#define WIN32_ONLY_COMPILER
55
#endif
66

7-
#define _WIN32_WINNT 0x0500
7+
#define _WIN32_WINNT 0x0501
88
/*
99
* Always build with SSPI support. Keep it as a #define in case
1010
* we want a switch to disable it sometime in the future.

0 commit comments

Comments
 (0)