From fc93d4bd31788a89341991dd500f40e6ed50cd4e Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 4 Sep 2002 23:26:29 +1000 Subject: - (djm) Patch from itojun@ for Darwin OS: test getaddrinfo, reorder libcrypt --- ChangeLog | 3 ++- configure.ac | 20 ++++++++++++++++++-- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 39d89308d..48afa6322 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ 20020903 + - (djm) Patch from itojun@ for Darwin OS: test getaddrinfo, reorder libcrypt - (djm) Fix Redhat RPM build dependancy test - (djm) OpenBSD CVS Sync - markus@cvs.openbsd.org 2002/08/12 10:46:35 @@ -1596,4 +1597,4 @@ - (stevesk) entropy.c: typo in debug message - (djm) ssh-keygen -i needs seeded RNG; report from markus@ -$Id: ChangeLog,v 1.2443 2002/09/04 07:19:04 djm Exp $ +$Id: ChangeLog,v 1.2444 2002/09/04 13:26:29 djm Exp $ diff --git a/configure.ac b/configure.ac index 615fec2a5..9d3593aa4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.85 2002/08/14 01:52:11 tim Exp $ +# $Id: configure.ac,v 1.86 2002/09/04 13:26:30 djm Exp $ AC_INIT AC_CONFIG_SRCDIR([ssh.c]) @@ -98,7 +98,16 @@ case "$host" in AC_DEFINE(IP_TOS_IS_BROKEN) ;; *-*-darwin*) - AC_DEFINE(BROKEN_GETADDRINFO) + AC_MSG_CHECKING(if we have working getaddrinfo) + AC_TRY_RUN([#include +main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16)) + exit(0); + else + exit(1); +}], [AC_MSG_RESULT(working)], + [AC_MSG_RESULT(buggy) + AC_DEFINE(BROKEN_GETADDRINFO)], + [AC_MSG_RESULT(assume it is working)]) ;; *-*-hpux10.26) if test -z "$GCC"; then @@ -175,6 +184,7 @@ mips-sony-bsd|mips-sony-newsos4) SONY=1 ;; *-*-netbsd*) + check_for_libcrypt_before=1 need_dash_r=1 ;; *-*-freebsd*) @@ -718,6 +728,12 @@ if test "x$PAM_MSG" = "xyes" ; then ) fi +# Some systems want crypt() from libcrypt, *not* the version in OpenSSL, +# because the system crypt() is more featureful. +if test "x$check_for_libcrypt_before" = "x1"; then + AC_CHECK_LIB(crypt, crypt) +fi + # Search for OpenSSL saved_CPPFLAGS="$CPPFLAGS" saved_LDFLAGS="$LDFLAGS" -- cgit v1.2.3