- (dtucker) [configure.ac defines.h includes.h sftp.c] Add support for

LynxOS, patch from Olli Savia (ops at iki.fi).  ok djm@
This commit is contained in:
Darren Tucker 2005-08-23 08:06:55 +10:00
Родитель 1d10976c16
Коммит 93e7e8f345
5 изменённых файлов: 32 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,7 @@
20050821
- (dtucker) [configure.ac defines.h includes.h sftp.c] Add support for
LynxOS, patch from Olli Savia (ops at iki.fi). ok djm@
20050816
- (djm) [ttymodes.c] bugzilla #1054: Fix encoding of _POSIX_VDISABLE,
from Jacob Nevins; ok dtucker@
@ -2941,4 +2945,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3874 2005/08/16 11:32:09 djm Exp $
$Id: ChangeLog,v 1.3875 2005/08/22 22:06:55 dtucker Exp $

Просмотреть файл

@ -1,4 +1,4 @@
# $Id: configure.ac,v 1.286 2005/08/16 00:48:41 tim Exp $
# $Id: configure.ac,v 1.287 2005/08/22 22:06:56 dtucker Exp $
#
# Copyright (c) 1999-2004 Damien Miller
#
@ -555,6 +555,12 @@ mips-sony-bsd|mips-sony-newsos4)
AC_DEFINE(NEED_SETPRGP, [], [Need setpgrp to acquire controlling tty])
AC_DEFINE(HAVE_SYS_SYSLOG_H, 1, [Force use of sys/syslog.h on Ultrix])
;;
*-*-lynxos)
CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"
AC_DEFINE(MISSING_HOWMANY)
AC_DEFINE(BROKEN_SETVBUF, 1, [LynxOS has broken setvbuf() implementation])
;;
esac
# Allow user to specify flags

Просмотреть файл

@ -25,7 +25,7 @@
#ifndef _DEFINES_H
#define _DEFINES_H
/* $Id: defines.h,v 1.123 2005/08/10 11:52:36 dtucker Exp $ */
/* $Id: defines.h,v 1.124 2005/08/22 22:06:56 dtucker Exp $ */
/* Constants */
@ -579,6 +579,23 @@ struct winsize {
# define SSH_SYSFDMAX 10000
#endif
#if defined(__Lynx__)
/*
* LynxOS defines these in param.h which we do not want to include since
* it will also pull in a bunch of kernel definitions.
*/
# define ALIGNBYTES (sizeof(int) - 1)
# define ALIGN(p) (((unsigned)p + ALIGNBYTES) & ~ALIGNBYTES)
/* Missing prototypes on LynxOS */
int snprintf (char *, size_t, const char *, ...);
int mkstemp (char *);
char *crypt (const char *, const char *);
int seteuid (uid_t);
int setegid (gid_t);
char *mkdtemp (char *);
int rresvport_af (int *, sa_family_t);
int innetgr (const char *, const char *, const char *, const char *);
#endif
/*
* Define this to use pipes instead of socketpairs for communicating with the

Просмотреть файл

@ -21,6 +21,7 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#include <ctype.h>
#include <errno.h>

2
sftp.c
Просмотреть файл

@ -1295,7 +1295,7 @@ interactive_loop(int fd_in, int fd_out, char *file1, char *file2)
xfree(dir);
}
#if HAVE_SETVBUF
#if defined(HAVE_SETVBUF) && !defined(BROKEN_SETVBUF)
setvbuf(stdout, NULL, _IOLBF, 0);
setvbuf(infile, NULL, _IOLBF, 0);
#else