Commit 446f033e authored by Guido van Rossum's avatar Guido van Rossum

For Win32, added pragmas specifying the python15[_d].lib library.

parent 2c2f731d
......@@ -197,6 +197,13 @@ typedef int pid_t;
#ifdef MS_WIN32
/* So nobody needs to specify the .lib in their Makefile any more */
#ifdef _DEBUG
#pragma comment(lib,"python15_d.lib")
#else
#pragma comment(lib,"python15.lib")
#endif
#define SIZEOF_INT 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