# HG changeset patch # User cannam # Date 1247571112 0 # Node ID 812fbde7eca54aa03a314d8db581bd372a0b338e # Parent a54850da8229f7ceec259387555307fb349a0c49 * Don't even try to preload on Windows diff -r a54850da8229 -r 812fbde7eca5 pyvamp-main.cpp --- a/pyvamp-main.cpp Mon Jul 13 12:23:51 2009 +0000 +++ b/pyvamp-main.cpp Tue Jul 14 11:31:52 2009 +0000 @@ -126,7 +126,10 @@ static bool preloadPython() { - // useless on Windows +#ifdef _WIN32 + // this doesn't seem to be necessary at all on Windows + return true; +#endif string pyver = Py_GetVersion(); int dots = 2;