diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 0f5ab9187..aa9a5d215 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.75 2002/07/07 20:43:36 tim Exp $ | 1 | # $Id: configure.ac,v 1.76 2002/07/09 02:17:10 tim Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -424,7 +424,8 @@ AC_CHECK_FUNC(strcasecmp, | |||
424 | [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ] | 424 | [], [ AC_CHECK_LIB(resolv, strcasecmp, LIBS="$LIBS -lresolv") ] |
425 | ) | 425 | ) |
426 | AC_CHECK_FUNC(utimes, | 426 | AC_CHECK_FUNC(utimes, |
427 | [], [ AC_CHECK_LIB(c89, utimes, LIBS="$LIBS -lc89") ] | 427 | [], [ AC_CHECK_LIB(c89, utimes, [AC_DEFINE(HAVE_UTIMES) |
428 | LIBS="$LIBS -lc89"]) ] | ||
428 | ) | 429 | ) |
429 | 430 | ||
430 | dnl Checks for libutil functions | 431 | dnl Checks for libutil functions |
@@ -1825,7 +1826,7 @@ LIBS="$LIBS $KLIBS $K5LIBS" | |||
1825 | 1826 | ||
1826 | PRIVSEP_PATH=/var/empty | 1827 | PRIVSEP_PATH=/var/empty |
1827 | AC_ARG_WITH(privsep-path, | 1828 | AC_ARG_WITH(privsep-path, |
1828 | [ --with-privsep-path=xxx Path for privilege separation chroot ], | 1829 | [ --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty)], |
1829 | [ | 1830 | [ |
1830 | if test "x$withval" != "$no" ; then | 1831 | if test "x$withval" != "$no" ; then |
1831 | PRIVSEP_PATH=$withval | 1832 | PRIVSEP_PATH=$withval |