[New-bugs-announce] [issue24217] O_RDWR undefined in mmapmodule.c

Jeffrey Armstrong report at bugs.python.org
Sun May 17 17:20:16 CEST 2015


New submission from Jeffrey Armstrong:

While compiling on Linux/x86 with Open Watcom, I've run into the following at link time in Modules/mmapmodule.c:

./Modules/mmapmodule.c(1223): Error! E1011: Symbol 'O_RDWR' has not been declared

The constant isn't defined because fcntl.h isn't included.  Looking at the top of the file, it appears that, for the Apple platform only, this header is included, but no others.

In order to support more runtime libraries outside of GNU libc, I would suggest including fcntl.h for all UNIX-y platforms, especially because the POSIX standard dictates that this constant be defined in fcntl.h.  I don't know how it finds its way in under GCC/GNU libc, but an explicit include might be better.

----------
components: Extension Modules
files: mmapmodule.py3.5.0a3.diff
keywords: patch
messages: 243404
nosy: Jeffrey.Armstrong
priority: normal
severity: normal
status: open
title: O_RDWR undefined in mmapmodule.c
type: compile error
versions: Python 3.5
Added file: http://bugs.python.org/file39407/mmapmodule.py3.5.0a3.diff

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue24217>
_______________________________________


More information about the New-bugs-announce mailing list