- (djm) [configure.ac log.c scp.c sshconnect2.c openbsd-compat/vis.c]
[openbsd-compat/vis.h] FreeBSD's strnvis isn't compatible with OpenBSD's so mark it as broken. Patch from des AT des.no
This commit is contained in:
parent
aa86c3970f
commit
63b4bcd04e
|
@ -1,3 +1,8 @@
|
|||
20120318
|
||||
- (djm) [configure.ac log.c scp.c sshconnect2.c openbsd-compat/vis.c]
|
||||
[openbsd-compat/vis.h] FreeBSD's strnvis isn't compatible with OpenBSD's
|
||||
so mark it as broken. Patch from des AT des.no
|
||||
|
||||
20120317
|
||||
- (tim) [configure.ac] OpenServer 5 wants lastlog even though it has none
|
||||
of the bits the configure test looks for.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: configure.ac,v 1.517 2013/03/17 03:55:47 tim Exp $
|
||||
# $Id: configure.ac,v 1.518 2013/03/20 01:55:15 djm Exp $
|
||||
#
|
||||
# Copyright (c) 1999-2004 Damien Miller
|
||||
#
|
||||
|
@ -15,7 +15,7 @@
|
|||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
||||
AC_REVISION($Revision: 1.517 $)
|
||||
AC_REVISION($Revision: 1.518 $)
|
||||
AC_CONFIG_SRCDIR([ssh.c])
|
||||
AC_LANG([C])
|
||||
|
||||
|
@ -721,6 +721,7 @@ mips-sony-bsd|mips-sony-newsos4)
|
|||
AC_CHECK_HEADER([net/if_tap.h], ,
|
||||
AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
|
||||
AC_DEFINE([BROKEN_GLOB], [1], [FreeBSD glob does not do what we need])
|
||||
AC_DEFINE([BROKEN_STRNVIS], [1], [FreeBSD strnvis does not do what we need])
|
||||
;;
|
||||
*-*-bsdi*)
|
||||
AC_DEFINE([SETEUID_BREAKS_SETUID])
|
||||
|
|
2
log.c
2
log.c
|
@ -45,7 +45,7 @@
|
|||
#include <syslog.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
|
||||
#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
|
||||
# include <vis.h>
|
||||
#endif
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
/* OPENBSD ORIGINAL: lib/libc/gen/vis.c */
|
||||
|
||||
#include "includes.h"
|
||||
#if !defined(HAVE_STRNVIS)
|
||||
#if !defined(HAVE_STRNVIS) || defined(BROKEN_STRNVIS)
|
||||
|
||||
#include <ctype.h>
|
||||
#include <string.h>
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
/* OPENBSD ORIGINAL: include/vis.h */
|
||||
|
||||
#include "includes.h"
|
||||
#if !defined(HAVE_STRNVIS)
|
||||
#if !defined(HAVE_STRNVIS) || defined(BROKEN_STRNVIS)
|
||||
|
||||
#ifndef _VIS_H_
|
||||
#define _VIS_H_
|
||||
|
@ -92,4 +92,4 @@ ssize_t strnunvis(char *, const char *, size_t)
|
|||
|
||||
#endif /* !_VIS_H_ */
|
||||
|
||||
#endif /* !HAVE_STRNVIS */
|
||||
#endif /* !HAVE_STRNVIS || BROKEN_STRNVIS */
|
||||
|
|
2
scp.c
2
scp.c
|
@ -103,7 +103,7 @@
|
|||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
|
||||
#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
|
||||
#include <vis.h>
|
||||
#endif
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
|
||||
#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
|
||||
#include <vis.h>
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue