[Python-checkins] r43732 - python/branches/release24-maint/PCbuild/_ssl.mak

martin.v.loewis python-checkins at python.org
Sat Apr 8 11:14:56 CEST 2006


Author: martin.v.loewis
Date: Sat Apr  8 11:14:56 2006
New Revision: 43732

Modified:
   python/branches/release24-maint/PCbuild/_ssl.mak
Log:
Define WIN32, to get proper struct alignment in WinSock2.h.
Fixes #1462352.

Modified: python/branches/release24-maint/PCbuild/_ssl.mak
==============================================================================
--- python/branches/release24-maint/PCbuild/_ssl.mak	(original)
+++ python/branches/release24-maint/PCbuild/_ssl.mak	Sat Apr  8 11:14:56 2006
@@ -2,12 +2,12 @@
 !IFDEF DEBUG
 MODULE=_ssl_d.pyd
 TEMP_DIR=x86-temp-debug/_ssl
-CFLAGS=/Od /Zi /MDd /LDd /DDEBUG /D_DEBUG
+CFLAGS=/Od /Zi /MDd /LDd /DDEBUG /D_DEBUG /DWIN32
 SSL_LIB_DIR=$(SSL_DIR)/out32.dbg
 !ELSE
 MODULE=_ssl.pyd
 TEMP_DIR=x86-temp-release/_ssl
-CFLAGS=/Ox /MD /LD
+CFLAGS=/Ox /MD /LD /DWIN32
 SSL_LIB_DIR=$(SSL_DIR)/out32
 !ENDIF
 


More information about the Python-checkins mailing list