mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-04-06 17:41:53 +00:00
- (bal) NCR SVR4 compatiblity provide by Don Bragg <thewizarddon@yahoo.com>
This commit is contained in:
parent
61ce036c4a
commit
603bdfd602
@ -6,6 +6,7 @@
|
|||||||
- (djm) Clean up PCRE text in INSTALL
|
- (djm) Clean up PCRE text in INSTALL
|
||||||
- (djm) Fix OSF SIA auth NULL pointer deref. Report from Mike Battersby
|
- (djm) Fix OSF SIA auth NULL pointer deref. Report from Mike Battersby
|
||||||
<mib@unimelb.edu.au>
|
<mib@unimelb.edu.au>
|
||||||
|
- (bal) NCR SVR4 compatiblity provide by Don Bragg <thewizarddon@yahoo.com>
|
||||||
|
|
||||||
20010211
|
20010211
|
||||||
- (bal) OpenBSD Sync
|
- (bal) OpenBSD Sync
|
||||||
@ -3902,4 +3903,4 @@
|
|||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.747 2001/02/12 07:02:23 djm Exp $
|
$Id: ChangeLog,v 1.748 2001/02/12 07:29:45 mouring Exp $
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $Id: configure.in,v 1.234 2001/02/09 01:55:36 djm Exp $
|
# $Id: configure.in,v 1.235 2001/02/12 07:29:45 mouring Exp $
|
||||||
|
|
||||||
AC_INIT(ssh.c)
|
AC_INIT(ssh.c)
|
||||||
|
|
||||||
@ -179,6 +179,13 @@ mips-sony-bsd|mips-sony-newsos4)
|
|||||||
MANTYPE='$(CATMAN)'
|
MANTYPE='$(CATMAN)'
|
||||||
mansubdir=cat
|
mansubdir=cat
|
||||||
;;
|
;;
|
||||||
|
*-ncr-sysv*)
|
||||||
|
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
|
||||||
|
LDFLAGS="$LDFLAGS -L/usr/local/lib"
|
||||||
|
MANTYPE='$(CATMAN)'
|
||||||
|
mansubdir=cat
|
||||||
|
LIBS="$LIBS -lc89 -lnsl -lgen -lsocket"
|
||||||
|
;;
|
||||||
*-sni-sysv*)
|
*-sni-sysv*)
|
||||||
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
|
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
|
||||||
LDFLAGS="$LDFLAGS -L/usr/local/lib -L/usr/ucblib"
|
LDFLAGS="$LDFLAGS -L/usr/local/lib -L/usr/ucblib"
|
||||||
|
@ -45,8 +45,11 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
|
|||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_LIMITS_H
|
||||||
|
# include <limits.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_GETOPT_H
|
#ifdef HAVE_GETOPT_H
|
||||||
#include <getopt.h>
|
# include <getopt.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_BSTRING_H
|
#ifdef HAVE_BSTRING_H
|
||||||
# include <bstring.h>
|
# include <bstring.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user