Deleted Added
full compact
1c1
< # $Id: configure.ac,v 1.67 2002/06/21 00:01:19 mouring Exp $
---
> # $Id: configure.ac,v 1.72 2002/06/25 22:35:16 tim Exp $
78a79
> AC_DEFINE(LOGIN_NEEDS_UTMPX)
87a89
> AC_DEFINE(BROKEN_FD_PASSING)
249d250
< rsh_path="/usr/bin/rcmd"
266d266
< rsh_path="/usr/bin/rcmd"
269a270
> AC_DEFINE(BROKEN_FD_PASSING)
276a278
> AC_DEFINE(BROKEN_FD_PASSING)
577a580,603
> if test $ac_cv_func_mmap = yes ; then
> AC_MSG_CHECKING([for mmap anon shared])
> AC_TRY_RUN(
> [
> #include <stdio.h>
> #include <sys/mman.h>
> #if !defined(MAP_ANON) && defined(MAP_ANONYMOUS)
> #define MAP_ANON MAP_ANONYMOUS
> #endif
> main() { char *p;
> p = (char *) mmap(NULL, 10, PROT_WRITE|PROT_READ, MAP_ANON|MAP_SHARED, -1, 0);
> if (p == (char *)-1)
> exit(1);
> exit(0);
> }
> ],
> [
> AC_MSG_RESULT(yes)
> AC_DEFINE(HAVE_MMAP_ANON_SHARED)
> ],
> [ AC_MSG_RESULT(no) ]
> )
> fi
>
910c936
< ssh_privsep_user=sshd
---
> SSH_PRIVSEP_USER=sshd
915c941
< ssh_privsep_user=$withval
---
> SSH_PRIVSEP_USER=$withval
919c945,946
< AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$ssh_privsep_user")
---
> AC_DEFINE_UNQUOTED(SSH_PRIVSEP_USER, "$SSH_PRIVSEP_USER")
> AC_SUBST(SSH_PRIVSEP_USER)
1792,1802d1818
< AC_ARG_WITH(rsh,
< [ --with-rsh=PATH Specify path to remote shell program ],
< [
< if test "x$withval" != "$no" ; then
< rsh_path=$withval
< fi
< ],
< [
< AC_PATH_PROG(rsh_path, rsh)
< ]
< )
1838,1840d1853
< if test ! -z "$rsh_path" ; then
< AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path")
< fi