- tim@mindrot.org 2001/04/25 21:38:01 [configure.in]
man page detection fixes for SCO
This commit is contained in:
parent
da2ed56f61
commit
07183b8e17
|
@ -11,6 +11,8 @@
|
||||||
(default: off), implies KbdInteractiveAuthentication. Suggestion from
|
(default: off), implies KbdInteractiveAuthentication. Suggestion from
|
||||||
markus@
|
markus@
|
||||||
- (djm) Include crypt.h if available in auth-passwd.c
|
- (djm) Include crypt.h if available in auth-passwd.c
|
||||||
|
- tim@mindrot.org 2001/04/25 21:38:01 [configure.in]
|
||||||
|
man page detection fixes for SCO
|
||||||
|
|
||||||
20010424
|
20010424
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
|
@ -5250,4 +5252,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1170 2001/04/25 12:50:18 djm Exp $
|
$Id: ChangeLog,v 1.1171 2001/04/26 04:40:28 tim Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.in,v 1.281 2001/04/25 12:50:19 djm Exp $
|
# $Id: configure.in,v 1.282 2001/04/26 04:40:28 tim Exp $
|
||||||
|
|
||||||
AC_INIT(ssh.c)
|
AC_INIT(ssh.c)
|
||||||
|
|
||||||
|
@ -221,6 +221,7 @@ mips-sony-bsd|mips-sony-newsos4)
|
||||||
AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
|
AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
|
||||||
AC_DEFINE(BROKEN_SAVED_UIDS)
|
AC_DEFINE(BROKEN_SAVED_UIDS)
|
||||||
AC_CHECK_FUNCS(getluid setluid)
|
AC_CHECK_FUNCS(getluid setluid)
|
||||||
|
MANTYPE=man
|
||||||
;;
|
;;
|
||||||
*-*-sco3.2v5*)
|
*-*-sco3.2v5*)
|
||||||
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
|
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
|
||||||
|
@ -233,6 +234,7 @@ mips-sony-bsd|mips-sony-newsos4)
|
||||||
AC_DEFINE(DISABLE_SHADOW)
|
AC_DEFINE(DISABLE_SHADOW)
|
||||||
AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
|
AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
|
||||||
AC_CHECK_FUNCS(getluid setluid)
|
AC_CHECK_FUNCS(getluid setluid)
|
||||||
|
MANTYPE=man
|
||||||
;;
|
;;
|
||||||
*-dec-osf*)
|
*-dec-osf*)
|
||||||
if test ! -z "USE_SIA" ; then
|
if test ! -z "USE_SIA" ; then
|
||||||
|
@ -1413,7 +1415,7 @@ AC_ARG_WITH(catman,
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
if test -z "$MANTYPE"; then
|
if test -z "$MANTYPE"; then
|
||||||
AC_PATH_PROGS(NROFF, nroff awf, /bin/false)
|
AC_PATH_PROGS(NROFF, nroff awf, /bin/false, /usr/bin:/usr/ucb)
|
||||||
if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
|
if ${NROFF} -mdoc ${srcdir}/ssh.1 >/dev/null 2>&1; then
|
||||||
MANTYPE=doc
|
MANTYPE=doc
|
||||||
elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
|
elif ${NROFF} -man ${srcdir}/ssh.1 >/dev/null 2>&1; then
|
||||||
|
|
Loading…
Reference in New Issue