From: Neil Schemenauer Date: Mon, 22 Apr 2002 03:29:32 +0000 (+0000) Subject: Py_GETENV is used by obmalloc and needs Py_IgnoreEnvironmentFlag. Provide it. X-Git-Tag: v2.3c1~5843 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44c4c6dbd6044291ca139edd4f0add84d784df04;p=thirdparty%2FPython%2Fcpython.git Py_GETENV is used by obmalloc and needs Py_IgnoreEnvironmentFlag. Provide it. --- diff --git a/Parser/pgen.c b/Parser/pgen.c index 55ce7a1f47fe..03d3c826dad3 100644 --- a/Parser/pgen.c +++ b/Parser/pgen.c @@ -13,6 +13,7 @@ #include "pgen.h" extern int Py_DebugFlag; +int Py_IgnoreEnvironmentFlag; /* needed by Py_GETENV */ /* PART ONE -- CONSTRUCT NFA -- Cf. Algorithm 3.2 from [Aho&Ullman 77] */