diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2010-07-19 21:59:28 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2010-07-19 21:59:28 +0000 |
commit | 5045cff4a059fb43d185e75ed1258eb9fbe4ca4b (patch) | |
tree | 20aff63270becd83fe367054a3d8fadbd2f72db4 /lang/python32/Makefile | |
parent | Update to new upstream release 5.0.26. (diff) |
Fix fcntl module to accept 'unsigned long' type commands for ioctl(2).
Although POSIX says the type is 'int', all BSD variants (including Mac OS X)
have been using 'unsigned long' type for very long time and its use predates
the standard long enough. For certain commands (e.g., TIOCSWINSZ, FIONBIO),
the Python value may get sign-extended on 64-bit platforms (by implicit type
promotion) and it causes annoying warnings from kernel such as this:
WARNING pid 24509 (python2.6): ioctl sign-extension ioctl ffffffff8004667e
Approved by: python (maintainer timeout)
Diffstat (limited to '')
-rw-r--r-- | lang/python32/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/python32/Makefile b/lang/python32/Makefile index 3c5989272d41..5c0f76ae8343 100644 --- a/lang/python32/Makefile +++ b/lang/python32/Makefile @@ -6,6 +6,7 @@ PORTNAME= python31 PORTVERSION= 3.1.2 +PORTREVISION= 1 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} |