diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-07-18 16:24:30 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-07-18 16:24:30 (GMT) |
commit | b926866cb7dad34c48cdc192d64f010a0bf2eaeb (patch) | |
tree | 896ad495fd821ad752ecb43465d9e864b221775e /configure.in | |
parent | f0473d511b7f883bfff3048f55e3a6adc7a43cb9 (diff) | |
download | cpython-b926866cb7dad34c48cdc192d64f010a0bf2eaeb.zip cpython-b926866cb7dad34c48cdc192d64f010a0bf2eaeb.tar.gz cpython-b926866cb7dad34c48cdc192d64f010a0bf2eaeb.tar.bz2 |
Deactivate definition of ss_family and ss_len. Fixes bug #440486.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index bcdbc67..c6b7a55 100644 --- a/configure.in +++ b/configure.in @@ -385,7 +385,8 @@ else fi # Check for enable-ipv6 -OPT="$OPT -Dss_family=__ss_family -Dss_len=__ss_len" +# XXX definition of ss_family disabled until author clarifies rationale. +# DEFS="$DEFS -Dss_family=__ss_family -Dss_len=__ss_len" AC_MSG_CHECKING([whether to enable ipv6]) AC_ARG_ENABLE(ipv6, [ --enable-ipv6 Enable ipv6 (with ipv4) support |