summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-01-16 12:05:18 +1100
committerDamien Miller <djm@mindrot.org>2000-01-16 12:05:18 +1100
commit5eed6a2d71a62ab575f0557d09ba5404f2ffe055 (patch)
treefe713fff26c8a27b0a4e01180d7ef189e9bc6073 /configure.in
parent229779984d6531ddb2c28838c312d413307a705d (diff)
- Renamed --with-xauth-path to --with-xauth
- Added --with-pid-dir option - Released 1.2.1pre26
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in13
1 files changed, 11 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 06a770764..816f56eb0 100644
--- a/configure.in
+++ b/configure.in
@@ -24,8 +24,8 @@ AC_ARG_WITH(rsh,
24 ] 24 ]
25) 25)
26 26
27AC_ARG_WITH(xauth-path, 27AC_ARG_WITH(xauth,
28 [ --with-xauth-path=PATH Specify path to xauth program ], 28 [ --with-xauth=PATH Specify path to xauth program ],
29 [ 29 [
30 if test "x$withval" != "$xno" ; then 30 if test "x$withval" != "$xno" ; then
31 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$withval") 31 AC_DEFINE_UNQUOTED(XAUTH_PATH, "$withval")
@@ -651,6 +651,15 @@ AC_ARG_WITH(default-path,
651 ] 651 ]
652) 652)
653 653
654AC_ARG_WITH(pid-dir,
655 [ --with-pid-dir=PATH Specify location of ssh.pid file],
656 [
657 if test "x$withval" != "xno" ; then
658 AC_DEFINE_UNQUOTED(PID_DIR, "$withval")
659 fi
660 ]
661)
662
654dnl Check for mail directory (last resort if we cannot get it from headers) 663dnl Check for mail directory (last resort if we cannot get it from headers)
655if test ! -z "$MAIL" ; then 664if test ! -z "$MAIL" ; then
656 maildir=`dirname $MAIL` 665 maildir=`dirname $MAIL`