[issue14324] Do not rely on AC_RUN_IFELSE tests in the configury

2012-06-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 575efae8ec57 by doko in branch 'default': - Issue #14324: use a linker test to check for profiling support http://hg.python.org/cpython/rev/575efae8ec57 -- ___ Python tracker

[issue14324] Do not rely on AC_RUN_IFELSE tests in the configury

2012-06-30 Thread Matthias Klose
Matthias Klose added the comment: use a linker test to check for profiling support (derived from the patch in issue #3754. -- Added file: http://bugs.python.org/file26218/profiling.diff ___ Python tracker ___

[issue14324] Do not rely on AC_RUN_IFELSE tests in the configury

2012-03-15 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue14324] Do not rely on AC_RUN_IFELSE tests in the configury

2012-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 58cd710d9dff by Matthias Klose in branch 'default': - Issue #14324: Fix configure tests for cross builds. http://hg.python.org/cpython/rev/58cd710d9dff -- ___ Python tracker

[issue14324] Do not rely on AC_RUN_IFELSE tests in the configury

2012-03-15 Thread Matthias Klose
Matthias Klose added the comment: when configured with --(en|dis)able-ipv6 for cross builds, don't fail the configury due to the missing buggy-getaddrinfo check. -- Added file: http://bugs.python.org/file24876/buggy-getaddrinfo.diff ___ Python track

[issue14324] Do not rely on AC_RUN_IFELSE tests in the configury

2012-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset fbbf9c187662 by Matthias Klose in branch 'default': - Issue #14324: Fix configure tests for cross builds. http://hg.python.org/cpython/rev/fbbf9c187662 New changeset 29ee48f843ec by Matthias Klose in branch 'default': - Issue #14324: Fix configure

[issue14324] Do not rely on AC_RUN_IFELSE tests in the configury

2012-03-15 Thread Matthias Klose
Matthias Klose added the comment: when configured --with(out)-computed-gotos for a cross, use this value instead of defaulting to no. -- Added file: http://bugs.python.org/file24871/computed-gotos.diff ___ Python tracker

[issue14324] Do not rely on AC_RUN_IFELSE tests in the configury

2012-03-15 Thread Matthias Klose
Matthias Klose added the comment: when using gcc, use a compilation test for the cross build check for long long format. -- Added file: http://bugs.python.org/file24869/long-long-format.diff ___ Python tracker __

[issue14324] Do not rely on AC_RUN_IFELSE tests in the configury

2012-03-15 Thread Matthias Klose
New submission from Matthias Klose : AC_RUN_IFELSE tests can't be used in cross builds, and have to fall back to some default in the case of a cross build. This is a meta issue to collect changes for the conversion of such tests. -- assignee: doko components: Cross-Build keywords: pat