[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2013-04-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 663800e18fef by Gregory P. Smith in branch '3.2': This local change was lost during the fixing of issue17192 to update http://hg.python.org/cpython/rev/663800e18fef New changeset 7438d202e380 by Gregory P. Smith in branch '2.7': This local change wa

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2011-07-19 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2011-07-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8f3cc8ffc3ff by Barry Warsaw in branch '2.7': - Issue #10309: Define _GNU_SOURCE so that mremap() gets the proper http://hg.python.org/cpython/rev/8f3cc8ffc3ff New changeset cc00e09404e6 by Barry Warsaw in branch '3.2': - Issue #10309: Define _GNU_

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2011-07-19 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Python 3.1 is in security only mode, so this patch cannot be applied to that version. -- versions: +Python 3.3 -Python 3.1 ___ Python tracker ___

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2011-07-19 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- assignee: -> barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2011-07-19 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: theller -> nosy: -theller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2011-07-19 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I'm running into this while trying to backport Python 2.7.2 to Ubuntu 10.04. Our build machines are throwing an error because they catch the implicit cast so as to prevent problems on ia64 and amd64. http://wiki.debian.org/IMplicitPointerConversions I have

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2010-11-04 Thread Hallvard B Furuseth
Changes by Hallvard B Furuseth : -- versions: +Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2010-11-04 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: -> theller nosy: +theller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2010-11-04 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue10309] dlmalloc.c needs _GNU_SOURCE for mremap()

2010-11-04 Thread Hallvard B Furuseth
New submission from Hallvard B Furuseth : dlmalloc uses mremap() which is undeclared on Linux, needs _GNU_SOURCE. This can break at least on hosts where void* = 64 bits and int (default return type) 32 bits, since some bits in the return type are lost. A minimal patch is: --- Modules/_ctypes/li