[issue14327] replace use of uname in the configury with macros set by AC_CANONICAL_HOST

2012-06-29 Thread Matthias Klose
Matthias Klose added the comment: that was checked in -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue14327] replace use of uname in the configury with macros set by AC_CANONICAL_HOST

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

[issue14327] replace use of uname in the configury with macros set by AC_CANONICAL_HOST

2012-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset d0cce5a2c0cf by Matthias Klose in branch 'default': - Issue #14327: Call AC_CANONICAL_HOST in configure.ac and check in http://hg.python.org/cpython/rev/d0cce5a2c0cf -- ___ Python tracker

[issue14327] replace use of uname in the configury with macros set by AC_CANONICAL_HOST

2012-03-15 Thread Matthias Klose
Matthias Klose added the comment: the following patch still keeps the uname calls for native builds, but sets the ac_sys_* macros depending on $host for cross builds. For now the cross configure fails for everything except linux and cygwin targets. -- keywords: +patch Added file: http

[issue14327] replace use of uname in the configury with macros set by AC_CANONICAL_HOST

2012-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 04aa26c572ba by Matthias Klose in branch 'default': - Issue #14327: Call AC_CANONICAL_HOST in configure.ac and check in http://hg.python.org/cpython/rev/04aa26c572ba -- nosy: +python-dev ___ Python track

[issue14327] replace use of uname in the configury with macros set by AC_CANONICAL_HOST

2012-03-15 Thread Matthias Klose
Matthias Klose added the comment: call AC_CANONICAL_HOST and check in config.{guess,sub}, taken from git://git.savannah.gnu.org/config.git --- a/configure.ac Thu Mar 15 20:42:23 2012 +0100 +++ b/configure.ac Thu Mar 15 21:17:32 2012 +0100 @@ -33,6 +33,8 @@ AC_CONFIG_SRCDIR([Include/o

[issue14327] replace use of uname in the configury with macros set by AC_CANONICAL_HOST

2012-03-15 Thread Matthias Klose
New submission from Matthias Klose : the configury uses uname, which fails for cross builds. this issue tracks patches tor replace the uname calls with the use of macros set by AC_CANONICAL_HOST (host*, build*) -- assignee: doko components: Cross-Build keywords: needs review messages: