Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cb85326

Browse files
author
Skip Montanaro
committed
adds support for --with-pydebug configure option
1 parent e68140d commit cb85326

4 files changed

Lines changed: 523 additions & 461 deletions

File tree

acconfig.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,9 @@
151151
(shared library plus accessory files). */
152152
#undef WITH_NEXT_FRAMEWORK
153153

154+
/* Define if you want to build an interpreter with many run-time checks */
155+
#undef Py_DEBUG
156+
154157
/* The number of bytes in an off_t. */
155158
#undef SIZEOF_OFF_T
156159

config.h.in

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@
210210
(shared library plus accessory files). */
211211
#undef WITH_NEXT_FRAMEWORK
212212

213+
/* Define if you want to build an interpreter with many run-time checks */
214+
#undef Py_DEBUG
215+
213216
/* The number of bytes in an off_t. */
214217
#undef SIZEOF_OFF_T
215218

@@ -266,9 +269,6 @@
266269
/* The number of bytes in a void *. */
267270
#undef SIZEOF_VOID_P
268271

269-
/* Define if you have the _getpty function. */
270-
#undef HAVE__GETPTY
271-
272272
/* Define if you have the alarm function. */
273273
#undef HAVE_ALARM
274274

@@ -356,6 +356,9 @@
356356
/* Define if you have the getpid function. */
357357
#undef HAVE_GETPID
358358

359+
/* Define if you have the _getpty function. */
360+
#undef HAVE__GETPTY
361+
359362
/* Define if you have the getpwent function. */
360363
#undef HAVE_GETPWENT
361364

0 commit comments

Comments
 (0)