[Python-checkins] python/dist/src/PC/os2vacpp pyconfig.h,1.5,1.6
montanaro at users.sourceforge.net
montanaro at users.sourceforge.net
Tue Feb 10 11:50:36 EST 2004
Update of /cvsroot/python/python/dist/src/PC/os2vacpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27540/PC/os2vacpp
Modified Files:
pyconfig.h
Log Message:
remove support for missing ANSI C header files (limits.h, stddef.h, etc).
Index: pyconfig.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/os2vacpp/pyconfig.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** pyconfig.h 7 Feb 2004 12:55:46 -0000 1.5
--- pyconfig.h 10 Feb 2004 16:50:20 -0000 1.6
***************
*** 110,136 ****
#define STDC_HEADERS 1 /* VAC++ is an ANSI C Compiler */
- #define HAVE_LIMITS_H 1 /* #include <limits.h> */
- #define HAVE_STDLIB_H 1 /* #include <stdlib.h> */
#define HAVE_HYPOT 1 /* hypot() */
#define HAVE_PUTENV 1 /* putenv() */
- #define HAVE_STDDEF_H 1 /* #include <stddef.h> */
/* #define VA_LIST_IS_ARRAY 1 */ /* if va_list is an array of some kind */
/* Variable-Arguments/Prototypes */
#define HAVE_PROTOTYPES 1 /* VAC++ supports C Function Prototypes */
- #define HAVE_STDARG_H 1 /* #include <stdarg.h> */
#define HAVE_STDARG_PROTOTYPES 1 /* Our <stdarg.h> has prototypes */
/* String/Memory/Locale Operations */
- #define HAVE_STRDUP 1 /* strdup() */
#define HAVE_MEMMOVE 1 /* memmove() */
#define HAVE_STRERROR 1 /* strerror() */
#define HAVE_SETLOCALE 1 /* setlocale() */
- #define HAVE_LOCALE_H 1 /* #include <locale.h> */
#define MALLOC_ZERO_RETURNS_NULL 1 /* Our malloc(0) returns a NULL ptr */
/* Signal Handling */
#define RETSIGTYPE void /* Return type of handlers (int or void) */
- #define HAVE_SIGNAL_H 1 /* #include <signal.h> */
/* #undef WANT_SIGFPE_HANDLER */ /* Handle SIGFPE (see Include/pyfpe.h) */
/* #define HAVE_ALARM 1 */ /* alarm() */
--- 110,129 ----
More information about the Python-checkins
mailing list