Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AIX Objects/buffereobject.c does not build on AIX #45058

Closed
bhochste mannequin opened this issue Jun 8, 2007 · 2 comments
Closed

AIX Objects/buffereobject.c does not build on AIX #45058

bhochste mannequin opened this issue Jun 8, 2007 · 2 comments
Labels
build The build process and cross-build

Comments

@bhochste
Copy link
Mannequin

bhochste mannequin commented Jun 8, 2007

BPO 1733488
Nosy @loewis

Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

Show more details

GitHub fields:

assignee = None
closed_at = <Date 2007-06-08.17:30:13.000>
created_at = <Date 2007-06-08.13:42:38.000>
labels = ['build']
title = 'AIX Objects/buffereobject.c does not build on AIX'
updated_at = <Date 2007-06-08.17:30:13.000>
user = 'https://bugs.python.org/bhochste'

bugs.python.org fields:

activity = <Date 2007-06-08.17:30:13.000>
actor = 'loewis'
assignee = 'none'
closed = True
closed_date = None
closer = None
components = ['Build']
creation = <Date 2007-06-08.13:42:38.000>
creator = 'bhochste'
dependencies = []
files = []
hgrepos = []
issue_num = 1733488
keywords = []
message_count = 2.0
messages = ['32260', '32261']
nosy_count = 2.0
nosy_names = ['loewis', 'bhochste']
pr_nums = []
priority = 'normal'
resolution = 'fixed'
stage = None
status = 'closed'
superseder = None
type = None
url = 'https://bugs.python.org/issue1733488'
versions = []

@bhochste
Copy link
Mannequin Author

bhochste mannequin commented Jun 8, 2007

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
};

@bhochste bhochste mannequin closed this as completed Jun 8, 2007
@bhochste bhochste mannequin added the build The build process and cross-build label Jun 8, 2007
@bhochste bhochste mannequin closed this as completed Jun 8, 2007
@bhochste bhochste mannequin added the build The build process and cross-build label Jun 8, 2007
@loewis
Copy link
Mannequin

loewis mannequin commented Jun 8, 2007

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

@ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build The build process and cross-build
Projects
None yet
Development

No branches or pull requests

0 participants