diff options
author | Damien Miller <djm@mindrot.org> | 2013-03-20 12:55:14 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-03-20 12:55:14 +1100 |
commit | 63b4bcd04e1c57b77eabb4e4d359508a4b2af685 (patch) | |
tree | 751bcf38b2b4d26e7b69df583b08ef969fb04548 /configure.ac | |
parent | aa86c3970f24fc22185a9561ae84eeae0c6d15cd (diff) |
- (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
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5d835c93d..88dd29e9d 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.517 2013/03/17 03:55:47 tim Exp $ | 1 | # $Id: configure.ac,v 1.518 2013/03/20 01:55:15 djm Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -15,7 +15,7 @@ | |||
15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | 16 | ||
17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) | 17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) |
18 | AC_REVISION($Revision: 1.517 $) | 18 | AC_REVISION($Revision: 1.518 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | AC_LANG([C]) | 20 | AC_LANG([C]) |
21 | 21 | ||
@@ -721,6 +721,7 @@ mips-sony-bsd|mips-sony-newsos4) | |||
721 | AC_CHECK_HEADER([net/if_tap.h], , | 721 | AC_CHECK_HEADER([net/if_tap.h], , |
722 | AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support])) | 722 | AC_DEFINE([SSH_TUN_NO_L2], [1], [No layer 2 tunnel support])) |
723 | AC_DEFINE([BROKEN_GLOB], [1], [FreeBSD glob does not do what we need]) | 723 | AC_DEFINE([BROKEN_GLOB], [1], [FreeBSD glob does not do what we need]) |
724 | AC_DEFINE([BROKEN_STRNVIS], [1], [FreeBSD strnvis does not do what we need]) | ||
724 | ;; | 725 | ;; |
725 | *-*-bsdi*) | 726 | *-*-bsdi*) |
726 | AC_DEFINE([SETEUID_BREAKS_SETUID]) | 727 | AC_DEFINE([SETEUID_BREAKS_SETUID]) |