mirror of https://github.com/python/cpython
Define NDEBUG if Py_DEBUG isn't defined.
This commit is contained in:
parent
a16433b14e
commit
9145be4310
|
@ -42,3 +42,6 @@
|
|||
#define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
|
||||
#include <ansi_prefix.mac.h>
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -18,3 +18,6 @@
|
|||
#define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
|
||||
#include <ansi_prefix.mac.h>
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -43,3 +43,6 @@
|
|||
#include <stdio.h>
|
||||
extern int fileno(FILE *);
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -47,3 +47,6 @@
|
|||
#include <stdio.h>
|
||||
extern int fileno(FILE *);
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -15,3 +15,6 @@
|
|||
#define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
|
||||
#include <ansi_prefix.mac.h>
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -45,3 +45,6 @@
|
|||
#include <stdio.h>
|
||||
extern int fileno(FILE *);
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -49,3 +49,6 @@
|
|||
#include <stdio.h>
|
||||
extern int fileno(FILE *);
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -42,3 +42,6 @@
|
|||
#include <stdio.h>
|
||||
extern int fileno(FILE *);
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -42,3 +42,6 @@
|
|||
#define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
|
||||
#include <ansi_prefix.mac.h>
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -37,3 +37,6 @@
|
|||
#define MSL_USE_PRECOMPILED_HEADERS 0 /* Don't use precomp headers: we include our own */
|
||||
#include <ansi_prefix.mac.h>
|
||||
#endif
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
|
@ -11,3 +11,6 @@
|
|||
#define USE_TK /* Include _tkinter module in core Python */
|
||||
#define MAC_TCL /* This *must* be on if USE_TK is on */
|
||||
#define WITHOUT_FRAMEWORKS /* Use old-style Universal Header includes, not Carbon/Carbon.h */
|
||||
#ifndef Py_DEBUG
|
||||
#define NDEBUG
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue