From: Stefan Krah Date: Mon, 25 Apr 2016 19:38:53 +0000 (+0200) Subject: Issue #17905: Do not guard locale include with HAVE_LANGINFO_H. X-Git-Tag: v3.6.0a1~120 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1845d144bc58be7b245bb02da3245c5e01760621;p=thirdparty%2FPython%2Fcpython.git Issue #17905: Do not guard locale include with HAVE_LANGINFO_H. --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 0c68c544b043..b5199125a55b 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -20,6 +20,7 @@ Data members: #include "pythread.h" #include "osdefs.h" +#include #ifdef MS_WINDOWS #define WIN32_LEAN_AND_MEAN @@ -33,7 +34,6 @@ extern const char *PyWin_DLLVersionString; #endif #ifdef HAVE_LANGINFO_H -#include #include #endif