summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-07-08 19:17:10 -0700
committerTim Rice <tim@multitalents.net>2002-07-08 19:17:10 -0700
commitcbb9066d2d697e51f5e6df6681827f17756d154a (patch)
treec7816cc9419e5ec873d7fd2d2ef391d953296c2c
parent2d0bf3dcfdab65d1627b9612b5558a38a0eb000d (diff)
[configure.ac] fix libc89 utimes test. Mention default path for
--with-privsep-path=
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac7
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index abc99c38a..860d9805e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
2 - (tim) [openssh/contrib/solaris/buildpkg.sh] add PKG_INSTALL_ROOT to 2 - (tim) [openssh/contrib/solaris/buildpkg.sh] add PKG_INSTALL_ROOT to
3 work in a jumpstart environment. patch by kbrint@rufus.net 3 work in a jumpstart environment. patch by kbrint@rufus.net
4 - (tim) [Makefile.in] workaround for broken pakadd on some systems. 4 - (tim) [Makefile.in] workaround for broken pakadd on some systems.
5 - (tim) [configure.ac] fix libc89 utimes test. Mention default path for
6 --with-privsep-path=
5 7
620020707 820020707
7 - (tim) [Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH) 9 - (tim) [Makefile.in] use umask instead of chmod on $(PRIVSEP_PATH)
@@ -1314,4 +1316,4 @@
1314 - (stevesk) entropy.c: typo in debug message 1316 - (stevesk) entropy.c: typo in debug message
1315 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1317 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1316 1318
1317$Id: ChangeLog,v 1.2350 2002/07/09 02:10:05 tim Exp $ 1319$Id: ChangeLog,v 1.2351 2002/07/09 02:17:10 tim Exp $
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
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_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)
426AC_CHECK_FUNC(utimes, 426AC_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
430dnl Checks for libutil functions 431dnl Checks for libutil functions
@@ -1825,7 +1826,7 @@ LIBS="$LIBS $KLIBS $K5LIBS"
1825 1826
1826PRIVSEP_PATH=/var/empty 1827PRIVSEP_PATH=/var/empty
1827AC_ARG_WITH(privsep-path, 1828AC_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