summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-07-05 07:12:33 -0700
committerTim Rice <tim@multitalents.net>2002-07-05 07:12:33 -0700
commite958ed3624deeca53519b8a870e6d545d6a8fd3d (patch)
tree8eb7d15852e12fbf1bdd8914ba072a7527d76667
parentd00a1a1a03e03a5abcd5a9fcfaa6dbcef8cdc56c (diff)
[configure.ac] AIX 4.2.1 has authenticate() in libs.
Reported by Darren Tucker <dtucker@zip.com.au>
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac9
2 files changed, 12 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a70207b60..964abb810 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120020705
2 - (tim) [configure.ac] AIX 4.2.1 has authenticate() in libs.
3 Reported by Darren Tucker <dtucker@zip.com.au>
4
120020704 520020704
2 - (bal) Limit data to TTY for AIX only (Newer versions can't handle the 6 - (bal) Limit data to TTY for AIX only (Newer versions can't handle the
3 faster data rate) Bug #124 7 faster data rate) Bug #124
@@ -1274,4 +1278,4 @@
1274 - (stevesk) entropy.c: typo in debug message 1278 - (stevesk) entropy.c: typo in debug message
1275 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1279 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1276 1280
1277$Id: ChangeLog,v 1.2335 2002/07/04 19:33:49 mouring Exp $ 1281$Id: ChangeLog,v 1.2336 2002/07/05 14:12:33 tim Exp $
diff --git a/configure.ac b/configure.ac
index 7ef77e5b1..4b48be389 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.73 2002/06/28 00:37:33 mouring Exp $ 1# $Id: configure.ac,v 1.74 2002/07/05 14:12:34 tim Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -71,7 +71,12 @@ case "$host" in
71 ) 71 )
72 LDFLAGS="$saved_LDFLAGS" 72 LDFLAGS="$saved_LDFLAGS"
73 fi 73 fi
74 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)]) 74 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)],
75 [AC_CHECK_LIB(s,authenticate,
76 [ AC_DEFINE(WITH_AIXAUTHENTICATE)
77 LIBS="$LIBS -ls"
78 ])
79 ])
75 AC_DEFINE(BROKEN_GETADDRINFO) 80 AC_DEFINE(BROKEN_GETADDRINFO)
76 AC_DEFINE(BROKEN_REALPATH) 81 AC_DEFINE(BROKEN_REALPATH)
77 dnl AIX handles lastlog as part of its login message 82 dnl AIX handles lastlog as part of its login message