[Python-checkins] r59634 - python/trunk/PC/VS7.1/_ssl.mak

christian.heimes python-checkins at python.org
Mon Dec 31 20:25:22 CET 2007


Author: christian.heimes
Date: Mon Dec 31 20:25:22 2007
New Revision: 59634

Modified:
   python/trunk/PC/VS7.1/_ssl.mak
Log:
Fixed path to _ssl.c in Windows make file, take three ...

Modified: python/trunk/PC/VS7.1/_ssl.mak
==============================================================================
--- python/trunk/PC/VS7.1/_ssl.mak	(original)
+++ python/trunk/PC/VS7.1/_ssl.mak	Mon Dec 31 20:25:22 2007
@@ -12,7 +12,7 @@
 SSL_LIB_DIR=$(SSL_DIR)/out32
 !ENDIF
 
-INCLUDES=-I ../Include -I ../PC -I $(SSL_DIR)/inc32
+INCLUDES=-I ../../Include -I ../../PC -I $(SSL_DIR)/inc32
 
 SSL_LIBS=gdi32.lib wsock32.lib user32.lib advapi32.lib /LIBPATH:$(SSL_LIB_DIR) libeay32.lib ssleay32.lib
 SSL_SOURCE=../../Modules/_ssl.c 


More information about the Python-checkins mailing list