From 859b16c8472928ee6aee9b2a1d281e310dd51d1e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 15 May 1998 20:22:08 +0000 Subject: In debug mode on MS Windows, DLLs are called foo_d.pyd or foo_d.dll. --- Python/importdl.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Python/importdl.c b/Python/importdl.c index 7a0de08..1a994ce 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -106,9 +106,14 @@ typedef int (* APIENTRY dl_funcptr)(); #include typedef FARPROC dl_funcptr; #define _DL_FUNCPTR_DEFINED +#ifdef _DEBUG +#define SHORT_EXT "_d.pyd" +#define LONG_EXT "_d.dll" +#else #define SHORT_EXT ".pyd" #define LONG_EXT ".dll" #endif +#endif #ifdef NeXT #define DYNAMIC_LINK -- cgit v0.12