summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 93f07ab50..17f54b379 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
120020412 120020412
2 - (stevesk) [auth-sia.[ch]] add BSD license from Chris Adams 2 - (stevesk) [auth-sia.[ch]] add BSD license from Chris Adams
3 - (tim) [configure.ac] add <sys/types.h> to msghdr tests. Change -L
4 to -h on testing for /bin being symbolic link
3 5
420020411 620020411
5 - (stevesk) [auth-sia.c] cleanup 7 - (stevesk) [auth-sia.c] cleanup
@@ -8225,4 +8227,4 @@
8225 - Wrote replacements for strlcpy and mkdtemp 8227 - Wrote replacements for strlcpy and mkdtemp
8226 - Released 1.0pre1 8228 - Released 1.0pre1
8227 8229
8228$Id: ChangeLog,v 1.2047 2002/04/12 15:36:07 stevesk Exp $ 8230$Id: ChangeLog,v 1.2048 2002/04/12 17:26:21 tim Exp $
diff --git a/configure.ac b/configure.ac
index ce4e29586..c0cce4bdd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.42 2002/04/10 23:17:05 stevesk Exp $ 1# $Id: configure.ac,v 1.43 2002/04/12 17:26:23 tim Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -1015,7 +1015,7 @@ AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$ssh_privsep_user")
1015 1015
1016OPATH=$PATH 1016OPATH=$PATH
1017PATH=/bin:/usr/bin 1017PATH=/bin:/usr/bin
1018/bin/test -L /bin 2> /dev/null && PATH=/usr/bin 1018test -h /bin 2> /dev/null && PATH=/usr/bin
1019test -d /sbin && PATH=$PATH:/sbin 1019test -d /sbin && PATH=$PATH:/sbin
1020test -d /usr/sbin && PATH=$PATH:/usr/sbin 1020test -d /usr/sbin && PATH=$PATH:/usr/sbin
1021PATH=$PATH:/etc:$OPATH 1021PATH=$PATH:/etc:$OPATH
@@ -1580,6 +1580,7 @@ AC_CACHE_CHECK([for msg_accrights field in struct msghdr],
1580 ac_cv_have_accrights_in_msghdr, [ 1580 ac_cv_have_accrights_in_msghdr, [
1581 AC_TRY_COMPILE( 1581 AC_TRY_COMPILE(
1582 [ 1582 [
1583#include <sys/types.h>
1583#include <sys/socket.h> 1584#include <sys/socket.h>
1584#include <sys/uio.h> 1585#include <sys/uio.h>
1585 ], 1586 ],
@@ -1596,6 +1597,7 @@ AC_CACHE_CHECK([for msg_control field in struct msghdr],
1596 ac_cv_have_control_in_msghdr, [ 1597 ac_cv_have_control_in_msghdr, [
1597 AC_TRY_COMPILE( 1598 AC_TRY_COMPILE(
1598 [ 1599 [
1600#include <sys/types.h>
1599#include <sys/socket.h> 1601#include <sys/socket.h>
1600#include <sys/uio.h> 1602#include <sys/uio.h>
1601 ], 1603 ],