From: Stefan Krah Date: Mon, 20 Jan 2014 14:31:08 +0000 (+0100) Subject: Issue #19036: Including locale.h should not depend on HAVE_LANGINFO_H. X-Git-Tag: v3.3.4rc1~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c01e38677550839d10b558b1a9e0e615d6e4a81;p=python Issue #19036: Including locale.h should not depend on HAVE_LANGINFO_H. --- diff --git a/Misc/ACKS b/Misc/ACKS index 6dfbd49394..ba32f6b1d8 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -545,6 +545,7 @@ Randall Hopper Nadav Horesh Alon Horev Jan Hosang +Alan Hourihane Ken Howard Brad Howes Mike Hoy diff --git a/Python/fileutils.c b/Python/fileutils.c index dbcb9234e0..d25111f4bb 100644 --- a/Python/fileutils.c +++ b/Python/fileutils.c @@ -1,11 +1,12 @@ #include "Python.h" #include "osdefs.h" +#include + #ifdef MS_WINDOWS # include #endif #ifdef HAVE_LANGINFO_H -#include #include #endif