Kaydet (Commit) 58e64a82 authored tarafından Vladimir Marangozov's avatar Vladimir Marangozov

Move down the INT_MAX logic, because HAVE_LIMITS_H was always undefined

and this breaks the AIX build with an INT_MAX redefinition error.
"config.h" is included in pgenheaders.h, so moving this down fixes the
problem.
üst 1d62f492
/* Parse tree node implementation */
#include "pgenheaders.h"
#include "node.h"
#include "errcode.h"
#ifdef HAVE_LIMITS_H #ifdef HAVE_LIMITS_H
#include <limits.h> #include <limits.h>
#endif #endif
...@@ -6,12 +12,6 @@ ...@@ -6,12 +12,6 @@
#define INT_MAX 2147483647 #define INT_MAX 2147483647
#endif #endif
/* Parse tree node implementation */
#include "pgenheaders.h"
#include "node.h"
#include "errcode.h"
node * node *
PyNode_New(int type) PyNode_New(int type)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment