diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 9 |
2 files changed, 12 insertions, 3 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20020705 | ||
2 | - (tim) [configure.ac] AIX 4.2.1 has authenticate() in libs. | ||
3 | Reported by Darren Tucker <dtucker@zip.com.au> | ||
4 | |||
1 | 20020704 | 5 | 20020704 |
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 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_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 |