[ python-Bugs-1733488 ] AIX Objects/buffereobject.c does not build on AIX

SourceForge.net noreply at sourceforge.net
Fri Jun 8 19:30:13 CEST 2007


Bugs item #1733488, was opened at 2007-06-08 15:42
Message generated for change (Comment added) made by loewis
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: Closed
>Resolution: Fixed
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
};


----------------------------------------------------------------------

>Comment By: Martin v. Löwis (loewis)
Date: 2007-06-08 19:30

Message:
Logged In: YES 
user_id=21627
Originator: NO

Thanks for the report. This is now fixed in r55829 and r55830

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1733488&group_id=5470


More information about the Python-bugs-list mailing list