- Fixed --with-pid-dir option
This commit is contained in:
parent
b13c73e385
commit
dbd250f8ab
1
CREDITS
1
CREDITS
|
@ -3,6 +3,7 @@ Tatu Ylonen <ylo@cs.hut.fi> - Creator of SSH
|
|||
Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
|
||||
Theo de Raadt, and Dug Song - Creators of OpenSSH
|
||||
|
||||
Andrew Stribblehill <a.d.stribblehill@durham.ac.uk> - Bugfixes
|
||||
Andre Lucas <andre.lucas@dial.pipex.com> - Many portability fixes
|
||||
Ben Taylor <bent@clark.net> - Solaris debugging and fixes
|
||||
Chip Salzenberg <chip@valinux.com> - Assorted patches
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
20000118
|
||||
- Fixed --with-pid-dir option
|
||||
|
||||
20000117
|
||||
- Clean up bsd-bindresvport.c. Use arc4random() for picking initial
|
||||
port, ignore EINVAL errors (Linux) when searching for free port.
|
||||
|
|
|
@ -133,7 +133,7 @@
|
|||
#undef USER_PATH
|
||||
|
||||
/* Specify location of ssh.pid */
|
||||
#undef PID_DIR
|
||||
#undef PIDDIR
|
||||
|
||||
@BOTTOM@
|
||||
|
||||
|
|
|
@ -670,7 +670,7 @@ AC_ARG_WITH(pid-dir,
|
|||
fi
|
||||
]
|
||||
)
|
||||
AC_DEFINE_UNQUOTED(PID_DIR, "$piddir")
|
||||
AC_DEFINE_UNQUOTED(PIDDIR, "$piddir")
|
||||
AC_SUBST(piddir)
|
||||
|
||||
dnl Check for mail directory (last resort if we cannot get it from headers)
|
||||
|
|
Loading…
Reference in New Issue