Bugs item #1733488, was opened at 2007-06-08 08:42
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1733488&group_id=5470
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Build
Group: Platform-specific
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Brad Hochstetler (bhochste)
Assigned to: Nobody/Anonymous (nobody)
Summary: AIX Objects/buffereobject.c does not build on AIX
Initial Comment:
The file Objects/bufferobject.c does not build on AIX. This is do to a comma
being inserted on the last item of the enum type buffer_t. If this comma is
removed, which is legal C, then the file builds properly.
The change is on line 22:
enum buffer_t {
READ_BUFFER,
WRITE_BUFFER,
CHAR_BUFFER,
ANY_BUFFER,
};
to
enum buffer_t {
READ_BUFFER,
WRITE_BUFFER,
CHAR_BUFFER,
ANY_BUFFER
};
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1733488&group_id=5470
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com