external symbol PyObject_Unicode'.
Building _ssl than hangs the build server because starting python.exe
displayes a message box that 'Python30.dll' cannot be found.
Temporary (?) solution: Look for existance of python30.dll and fail
the _ssl build when it is missing.
if not defined HOST_PYTHON (\r
if %1 EQU Debug (\r
set HOST_PYTHON=python_d.exe\r
+ if not exist python30_d.dll exit 1\r
) ELSE (\r
set HOST_PYTHON=python.exe\r
+ if not exist python30.dll exit 1\r
)\r
)\r
%HOST_PYTHON% build_ssl.py %1 %2\r