[Python-checkins] CVS: python/dist/src/PC config.h,1.30,1.31
Guido van Rossum
guido@cnri.reston.va.us
2000年1月20日 17:33:28 -0500 (EST)
- Previous message: [Python-checkins] CVS: python/dist/src/Modules arraymodule.c,2.36,2.37
- Next message: [Python-checkins] CVS: python/dist/src/Objects classobject.c,2.81,2.82 complexobject.c,2.21,2.22 floatobject.c,2.53,2.54 frameobject.c,2.36,2.37 intobject.c,2.36,2.37 listobject.c,2.62,2.63 methodobject.c,2.24,2.25 object.c,2.61,2.62 stringobject.c,2.53,2.54 tupleobject.c,2.28,2.29
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /projects/cvsroot/python/dist/src/PC
In directory eric:/tmp/python/dist/src/PC
Modified Files:
config.h
Log Message:
The rest of the changes by Trent Mick and Dale Nagata for warning-free
compilation on NT Alpha. Mostly added casts etc.
Index: config.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/PC/config.h,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -r1.30 -r1.31
*** config.h 1999年12月20日 22:57:41 1.30
--- config.h 2000年01月20日 22:32:55 1.31
***************
*** 62,65 ****
--- 62,67 ----
#ifdef _M_IX86
#define COMPILER "[MSC 32 bit (Intel)]"
+ #elif defined(_M_ALPHA)
+ #define COMPILER "[MSC 32 bit (Alpha)]"
#else
#define COMPILER "[MSC (Unknown)]"
***************
*** 214,218 ****
/* So nobody needs to specify the .lib in their Makefile any more */
#ifdef _DEBUG
- #define Py_DEBUG
#pragma comment(lib,"python15_d.lib")
#else
--- 216,219 ----
***************
*** 220,223 ****
--- 221,228 ----
#endif
#endif /* USE_DL_EXPORT */
+
+ #ifdef _DEBUG
+ #define Py_DEBUG
+ #endif
#define SIZEOF_INT 4
- Previous message: [Python-checkins] CVS: python/dist/src/Modules arraymodule.c,2.36,2.37
- Next message: [Python-checkins] CVS: python/dist/src/Objects classobject.c,2.81,2.82 complexobject.c,2.21,2.22 floatobject.c,2.53,2.54 frameobject.c,2.36,2.37 intobject.c,2.36,2.37 listobject.c,2.62,2.63 methodobject.c,2.24,2.25 object.c,2.61,2.62 stringobject.c,2.53,2.54 tupleobject.c,2.28,2.29
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]