diff options
author | Matthias Klose <doko@ubuntu.com> | 2012-03-15 19:42:23 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2012-03-15 19:42:23 (GMT) |
commit | 9635013a8fb68c044ea2cae2ec344b3940c188b2 (patch) | |
tree | a47bfbe88808d6ecf749cd3acdd46bdc9347389a /configure | |
parent | b17289e199da24ca08752553e94837456b6c5df5 (diff) | |
download | cpython-9635013a8fb68c044ea2cae2ec344b3940c188b2.zip cpython-9635013a8fb68c044ea2cae2ec344b3940c188b2.tar.gz cpython-9635013a8fb68c044ea2cae2ec344b3940c188b2.tar.bz2 |
- Issue #14324: Fix configure tests for cross builds.
when configured with --(en|dis)able-ipv6 for cross builds, don't fail the configury due to the missing buggy-getaddrinfo check.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -10854,7 +10854,12 @@ $as_echo_n "checking getaddrinfo bug... " >&6; } $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : + +if test "${enable_ipv6+set}" = set; then + ac_cv_buggy_getaddrinfo="no -- configured with --(en|dis)able-ipv6" +else ac_cv_buggy_getaddrinfo=yes +fi else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ |