diff options
author | David Dykstra <dwd@samba.org> | 2003-01-20 16:27:34 +0000 |
---|---|---|
committer | David Dykstra <dwd@samba.org> | 2003-01-20 16:27:34 +0000 |
commit | 3a1eefd331eb08c306f3d31a892be4e2eb01e58b (patch) | |
tree | 02ff2448bbd7c9d02212dfd5fd6cf725058a2a37 /configure.in | |
parent | 824f1c79441adfcf081304901a23ef060614500a (diff) | |
download | rsync-3a1eefd331eb08c306f3d31a892be4e2eb01e58b.tar.gz |
Oops, lib/getaddrinfo wasn't pulled in when the system doesn't define
AI_PASSIVE.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 72a47816..33a486a5 100644 --- a/configure.in +++ b/configure.in @@ -353,8 +353,8 @@ yes AC_LIBOBJ(lib/getaddrinfo)])]) AC_CHECK_FUNCS(getnameinfo, , AC_LIBOBJ(lib/getnameinfo)) ], - AC_MSG_RESULT(no) - ) + [AC_MSG_RESULT(no) + AC_LIBOBJ(lib/getaddrinfo)]) AC_CHECK_MEMBER([struct sockaddr.sa_len], |