mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-29 00:34:33 +02:00
- (dtucker) [configure.ac] NetBSD's (and FreeBSD's) strnvis is gratuitously
incompatible with OpenBSD's despite post-dating it by more than a decade. Declare it as broken, and document FreeBSD's as the same. ok djm@
This commit is contained in:
parent
617da33c20
commit
42a0925301
@ -1,5 +1,8 @@
|
|||||||
20130123
|
20130123
|
||||||
- (tim) [session.c] Improve error reporting on set_id().
|
- (tim) [session.c] Improve error reporting on set_id().
|
||||||
|
- (dtucker) [configure.ac] NetBSD's (and FreeBSD's) strnvis is gratuitously
|
||||||
|
incompatible with OpenBSD's despite post-dating it by more than a decade.
|
||||||
|
Declare it as broken, and document FreeBSD's as the same. ok djm@
|
||||||
|
|
||||||
20130122
|
20130122
|
||||||
- (djm) [openbsd-compat/setproctitle.c] Don't fail to compile if a
|
- (djm) [openbsd-compat/setproctitle.c] Don't fail to compile if a
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $Id: configure.ac,v 1.558 2014/01/22 10:30:13 djm Exp $
|
# $Id: configure.ac,v 1.559 2014/01/23 12:14:40 dtucker Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
@ -15,7 +15,7 @@
|
|||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
||||||
AC_REVISION($Revision: 1.558 $)
|
AC_REVISION($Revision: 1.559 $)
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
AC_LANG([C])
|
AC_LANG([C])
|
||||||
|
|
||||||
@ -769,6 +769,8 @@ mips-sony-bsd|mips-sony-newsos4)
|
|||||||
AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
|
AC_DEFINE([SSH_TUN_PREPEND_AF], [1],
|
||||||
[Prepend the address family to IP tunnel traffic])
|
[Prepend the address family to IP tunnel traffic])
|
||||||
TEST_MALLOC_OPTIONS="AJRX"
|
TEST_MALLOC_OPTIONS="AJRX"
|
||||||
|
AC_DEFINE([BROKEN_STRNVIS], [1],
|
||||||
|
[NetBSD strnvis argument order is swapped compared to OpenBSD])
|
||||||
;;
|
;;
|
||||||
*-*-freebsd*)
|
*-*-freebsd*)
|
||||||
check_for_libcrypt_later=1
|
check_for_libcrypt_later=1
|
||||||
@ -777,7 +779,8 @@ mips-sony-bsd|mips-sony-newsos4)
|
|||||||
AC_CHECK_HEADER([net/if_tap.h], ,
|
AC_CHECK_HEADER([net/if_tap.h], ,
|
||||||
AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support]))
|
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_GLOB], [1], [FreeBSD glob does not do what we need])
|
||||||
AC_DEFINE([BROKEN_STRNVIS], [1], [FreeBSD strnvis does not do what we need])
|
AC_DEFINE([BROKEN_STRNVIS], [1],
|
||||||
|
[FreeBSD strnvis argument order is swapped compared to OpenBSD])
|
||||||
TEST_MALLOC_OPTIONS="AJRX"
|
TEST_MALLOC_OPTIONS="AJRX"
|
||||||
;;
|
;;
|
||||||
*-*-bsdi*)
|
*-*-bsdi*)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user