[issue16836] configure script disables support for IPv6 on a system where IPv6 is disabled

2013-01-08 Thread Martin v . Löwis

Martin v. Löwis added the comment:

LGTM.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16836
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16836] configure script disables support for IPv6 on a system where IPv6 is disabled

2013-01-08 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 1d8effd379c3 by Charles-François Natali in branch '2.7':
Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
http://hg.python.org/cpython/rev/1d8effd379c3

New changeset d5df9ed118c5 by Charles-François Natali in branch '3.2':
Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
http://hg.python.org/cpython/rev/d5df9ed118c5

New changeset ebfd847bc15a by Charles-François Natali in branch '3.3':
Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
http://hg.python.org/cpython/rev/ebfd847bc15a

New changeset f7e563478349 by Charles-François Natali in branch 'default':
Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
http://hg.python.org/cpython/rev/f7e563478349

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16836
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16836] configure script disables support for IPv6 on a system where IPv6 is disabled

2013-01-08 Thread Charles-François Natali

Charles-François Natali added the comment:

Should be fixed now, thanks.

--
resolution:  - fixed
stage: commit review - committed/rejected
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16836
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16836] configure script disables support for IPv6 on a system where IPv6 is disabled

2013-01-07 Thread Charles-François Natali

Changes by Charles-François Natali neolo...@free.fr:


--
nosy: +loewis

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16836
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16836] configure script disables support for IPv6 on a system where IPv6 is disabled

2013-01-04 Thread Charles-François Natali

Changes by Charles-François Natali neolo...@free.fr:


--
stage: needs patch - commit review

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16836
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16836] configure script disables support for IPv6 on a system where IPv6 is disabled

2013-01-03 Thread Ralf Schmitt

Ralf Schmitt added the comment:

 Would you want to provide a patch for this?

No, sorry.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16836
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16836] configure script disables support for IPv6 on a system where IPv6 is disabled

2013-01-03 Thread Charles-François Natali

Charles-François Natali added the comment:

Here's a patch, tested with ipv6.disable=1.

--
keywords: +patch
nosy: +neologix
Added file: http://bugs.python.org/file28549/ipv6config.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16836
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16836] configure script disables support for IPv6 on a system where IPv6 is disabled

2013-01-01 Thread Ralf Schmitt

New submission from Ralf Schmitt:

The configure script uses a runtime check to determine if IPv6 is working. If 
IPv6 is disabled system-wide via a kernel option on linux, the resulting python 
interpreter is compiled as if --disable-ipv6 had been passed to the configure 
script.

This causes multiple issues:
- http://bugs.python.org/issue7735
- http://bugs.python.org/issue16208

Both of the above issues have been closed as wontfix, and I have been told to 
not use --disable-ipv6 and instead disable IPv6 system wide via a boot option. 
This is what I did, and now I have the same issue because the configure script 
has this runtime check...

--
messages: 178762
nosy: schmir
priority: normal
severity: normal
status: open
title: configure script disables support for IPv6 on a system where IPv6 is 
disabled
type: behavior
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16836
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16836] configure script disables support for IPv6 on a system where IPv6 is disabled

2013-01-01 Thread Antoine Pitrou

Antoine Pitrou added the comment:

Indeed, I think the runtime check is misguided. If the system provides the 
required APIs for AF_INET6, then IPv6 support should be enabled regardless of 
whether the current system config allows to create an IPv6 socket or not.

Would you want to provide a patch for this? It's probably simple.

--
keywords: +easy
nosy: +pitrou
stage:  - needs patch
versions: +Python 3.2, Python 3.3, Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16836
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com