This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author loewis
Recipients
Date 2003-08-31.17:26:06
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=21627

_POSIX_C_SOURCE is not reserved for the C library, but for
the application, see

http://www.opengroup.org/onlinepubs/007904975/basedefs/xbd_chap02.html
(section "Strictly Conforming POSIX Application")

A conforming POSIX application *must* define
_POSIX_C_SOURCE, so if your C library also defines it, it is
a bug in the C library.

Most likely, the author failed to include Python.h before
other system headers, as required per

http://www.python.org/doc/current/api/includes.html
History
Date User Action Args
2007-08-23 14:16:20adminlinkissue793764 messages
2007-08-23 14:16:20admincreate