diff options
author | damien <damien> | 2000-01-19 03:36:49 +0000 |
---|---|---|
committer | damien <damien> | 2000-01-19 03:36:49 +0000 |
commit | 8fc0fd8ae0207329dcaba7a59d3742efcc966d7d (patch) | |
tree | 80f2ae37acdadd0c5b409e63b454083e5367c6ab /configure.in | |
parent | 0229f895c449a5f27da64f9aee70b050d603cd21 (diff) | |
download | openssh-8fc0fd8ae0207329dcaba7a59d3742efcc966d7d.tar.gz |
- Linux/glibc-2.1.2 takes a *long* time to look up names for AF_UNSPEC
addresses using getaddrinfo(). Added a configure switch to make the
default lookup mode AF_INET
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.in b/configure.in index d11c519d..45df18f6 100644 --- a/configure.in +++ b/configure.in @@ -662,6 +662,15 @@ AC_ARG_WITH(default-path, ] ) +AC_ARG_WITH(ipv4-default, + [ --with-ipv4-default Use IPv4 by connections unless '-6' specified], + [ + if test "x$withval" != "xno" ; then + AC_DEFINE(IPV4_DEFAULT) + fi + ] +) + piddir=/var/run AC_ARG_WITH(pid-dir, [ --with-pid-dir=PATH Specify location of ssh.pid file], |