summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2007-06-12 16:23:19 (GMT)
committerThomas Heller <theller@ctypes.org>2007-06-12 16:23:19 (GMT)
commitd34f9e9a544cddd7f7ac4a8dd8e23a369b5c77a2 (patch)
tree2fdc8b5851dd271868acdc727562cd6c45e52fd4
parentc8720b9847c6c91416b2e7c75aaf01ef777e5ed1 (diff)
downloadcpython-d34f9e9a544cddd7f7ac4a8dd8e23a369b5c77a2.zip
cpython-d34f9e9a544cddd7f7ac4a8dd8e23a369b5c77a2.tar.gz
cpython-d34f9e9a544cddd7f7ac4a8dd8e23a369b5c77a2.tar.bz2
Revert this change, since it breaks the win32 build:
Add bufferoverflowU.lib to the libraries needed by _ssl (is this the right thing to do?).
-rw-r--r--PCbuild/_ssl.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/_ssl.mak b/PCbuild/_ssl.mak
index d6eb7b0..5641c6a 100644
--- a/PCbuild/_ssl.mak
+++ b/PCbuild/_ssl.mak
@@ -26,12 +26,12 @@ _ssl$(SUFFIX): $(SSL_SOURCE) $(SSL_LIB_DIR)/libeay32.lib $(SSL_LIB_DIR)/ssleay32
@if not exist "$(TEMP)/_ssl/." mkdir "$(TEMP)/_ssl"
cl /nologo /c $(SSL_SOURCE) $(CFLAGS) /Fo$(TEMP)\_ssl\$*.obj $(INCLUDES)
link /nologo @<<
- /dll /out:_ssl$(SUFFIX) $(TEMP)\_ssl\$*.obj $(SSL_LIBS) bufferoverflowU.lib
+ /dll /out:_ssl$(SUFFIX) $(TEMP)\_ssl\$*.obj $(SSL_LIBS)
<<
_hashlib$(SUFFIX): $(HASH_SOURCE) $(SSL_LIB_DIR)/libeay32.lib ../PC/*.h ../Include/*.h
@if not exist "$(TEMP)/_hashlib/." mkdir "$(TEMP)/_hashlib"
cl /nologo /c $(HASH_SOURCE) $(CFLAGS) $(EXTRA_CFLAGS) /Fo$(TEMP)\_hashlib\$*.obj $(INCLUDES)
link /nologo @<<
- /dll /out:_hashlib$(SUFFIX) $(HASH_LIBS) $(TEMP)\_hashlib\$*.obj bufferoverflowU.lib
+ /dll /out:_hashlib$(SUFFIX) $(HASH_LIBS) $(TEMP)\_hashlib\$*.obj
<<