From: Benjamin Peterson Date: Sun, 2 Aug 2015 19:15:30 +0000 (-0700) Subject: include fcntl.h on all *nix platforms (closes #24217) X-Git-Tag: v2.7.11rc1~205 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d7a4f9ef8d62f709d21cf66ece09456714f7c6f1;p=thirdparty%2FPython%2Fcpython.git include fcntl.h on all *nix platforms (closes #24217) Patch by Jeffrey Armstrong. --- diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 0784350a2369..8fdf7f75e1ab 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -23,9 +23,9 @@ #ifndef MS_WINDOWS #define UNIX -# ifdef __APPLE__ +# ifdef HAVE_FCNTL_H # include -# endif +# endif /* HAVE_FCNTL_H */ #endif #ifdef MS_WINDOWS