]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (dtucker) [configure.ac] Put the check for the existence of getaddrinfo V_5_5_P1
authorDarren Tucker <dtucker@zip.com.au>
Sat, 10 Apr 2010 12:58:01 +0000 (22:58 +1000)
committerDarren Tucker <dtucker@zip.com.au>
Sat, 10 Apr 2010 12:58:01 +0000 (22:58 +1000)
   back so we disable the IPv6 tests if we don't have it.

ChangeLog
configure.ac

index eca278f2fa823ccf8141e2a137430e347fd67e87..39e0ba45dd769874948ad8b81bde1bad0fd8fcfa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20100410
+ - (dtucker) [configure.ac] Put the check for the existence of getaddrinfo
+   back so we disable the IPv6 tests if we don't have it.
+
 20100409
  - (dtucker) [contrib/cygwin/Makefile] Don't overwrite files with the wrong
    ones.  Based on a patch from Roumen Petrov.
index a564c13404cb3d99422cf50dedd9c4c52dd454ef..0a0e2ea15d0cb97a6730bc0f20cb36794e45b72a 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.448 2010/04/09 08:13:27 dtucker Exp $
+# $Id: configure.ac,v 1.449 2010/04/10 12:58:01 dtucker Exp $
 #
 # Copyright (c) 1999-2004 Damien Miller
 #
@@ -15,7 +15,7 @@
 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
 AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
-AC_REVISION($Revision: 1.448 $)
+AC_REVISION($Revision: 1.449 $)
 AC_CONFIG_SRCDIR([ssh.c])
 
 AC_CONFIG_HEADER(config.h)
@@ -4123,10 +4123,13 @@ dnl Adding -Werror to CFLAGS early prevents configure tests from running.
 dnl Add now.
 CFLAGS="$CFLAGS $werror_flags"
 
-AC_CHECK_DECL(BROKEN_GETADDRINFO,
-       AC_SUBST(TEST_SSH_IPV6, no),
-       AC_SUBST(TEST_SSH_IPV6, yes)
-)
+if test "x$ac_cv_func_getaddrinfo" != "xyes" ; then
+       TEST_SSH_IPV6=no
+else
+       TEST_SSH_IPV6=yes
+fi
+AC_CHECK_DECL(BROKEN_GETADDRINFO,  TEST_SSH_IPV6=no)
+AC_SUBST(TEST_SSH_IPV6, $TEST_SSH_IPV6)
 
 AC_EXEEXT
 AC_CONFIG_FILES([Makefile buildpkg.sh opensshd.init openssh.xml \