Commit 1a87be14 authored by Guido van Rossum's avatar Guido van Rossum

Shouldn't include the lib pragma when building python15.dll itself!

parent 44438303
...@@ -197,12 +197,14 @@ typedef int pid_t; ...@@ -197,12 +197,14 @@ typedef int pid_t;
#ifdef MS_WIN32 #ifdef MS_WIN32
#ifndef USE_DL_EXPORT
/* So nobody needs to specify the .lib in their Makefile any more */ /* So nobody needs to specify the .lib in their Makefile any more */
#ifdef _DEBUG #ifdef _DEBUG
#pragma comment(lib,"python15_d.lib") #pragma comment(lib,"python15_d.lib")
#else #else
#pragma comment(lib,"python15.lib") #pragma comment(lib,"python15.lib")
#endif #endif
#endif /* USE_DL_EXPORT */
#define SIZEOF_INT 4 #define SIZEOF_INT 4
#define SIZEOF_LONG 4 #define SIZEOF_LONG 4
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment