This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author py.user
Recipients ezio.melotti, georg.brandl, py.user, python-dev, skrah, wah meng
Date 2013-01-18.05:13:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358485983.28.0.387115052635.issue13057@psf.upfronthosting.co.za>
In-reply-to
Content
found a redundant code (stdlib.h already defines the NULL macro)


commit e33747a4b1a45acdd696a4e07bbd40ea7fb37366
Author: Stefan Krah <skrah@bytereef.org>
Date:   Thu Nov 22 22:49:11 2012 +0100

    Issue #13057: Include stdio.h when NULL is used in configure.ac.
    
    --HG--
    branch : 3.3

diff --git a/configure b/configure
index 4a861ed..534c8df 100755
--- a/configure
+++ b/configure

...

@@ -14833,6 +14834,7 @@ else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
 
+#include <stdio.h>
 #include<stdlib.h>
 int main() {
     size_t len = -1;
History
Date User Action Args
2013-01-18 05:13:03py.usersetrecipients: + py.user, georg.brandl, ezio.melotti, skrah, python-dev, wah meng
2013-01-18 05:13:03py.usersetmessageid: <1358485983.28.0.387115052635.issue13057@psf.upfronthosting.co.za>
2013-01-18 05:13:03py.userlinkissue13057 messages
2013-01-18 05:13:02py.usercreate