summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-04-12 10:26:21 -0700
committerTim Rice <tim@multitalents.net>2002-04-12 10:26:21 -0700
commitae49fe64ca7fe592f3c1cc6b5647c9cc60a4b49c (patch)
tree295ae3db40778e60f2a05d3c9f9bc1a689e82da3 /configure.ac
parent19fa9b544f0b25603517b771f6c36b630021e932 (diff)
[configure.ac] add <sys/types.h> to msghdr tests.
Change -L to -h on testing for /bin being symbolic link
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
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 ],