summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-01-17 22:02:17 +1100
committerDamien Miller <djm@mindrot.org>2000-01-17 22:02:17 +1100
commitb13c73e385ec7f5fe9c81078c71e01141894eca6 (patch)
treef090e9cf59d5c95a844f9b5417c5cd85b1193e91 /configure.in
parent6640995be8a3fde9636c7a5aae539966eb989ee6 (diff)
- Substitute PID directory in sshd.8. Suggestion from Andrew
Stribblehill <a.d.stribblehill@durham.ac.uk>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index e7524cd62..b356beb59 100644
--- a/configure.in
+++ b/configure.in
@@ -661,14 +661,17 @@ AC_ARG_WITH(default-path,
661 ] 661 ]
662) 662)
663 663
664piddir=/var/run
664AC_ARG_WITH(pid-dir, 665AC_ARG_WITH(pid-dir,
665 [ --with-pid-dir=PATH Specify location of ssh.pid file], 666 [ --with-pid-dir=PATH Specify location of ssh.pid file],
666 [ 667 [
667 if test "x$withval" != "xno" ; then 668 if test "x$withval" != "xno" ; then
668 AC_DEFINE_UNQUOTED(PID_DIR, "$withval") 669 piddir=$withval
669 fi 670 fi
670 ] 671 ]
671) 672)
673AC_DEFINE_UNQUOTED(PID_DIR, "$piddir")
674AC_SUBST(piddir)
672 675
673dnl Check for mail directory (last resort if we cannot get it from headers) 676dnl Check for mail directory (last resort if we cannot get it from headers)
674if test ! -z "$MAIL" ; then 677if test ! -z "$MAIL" ; then