summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2008-03-02 21:52:27 +1100
committerDarren Tucker <dtucker@zip.com.au>2008-03-02 21:52:27 +1100
commit54e859f63de83d9e26c6db6b3f6c32bf2189f202 (patch)
tree658901685a8987eb3b930b26e5975042ea1b686a
parentbaf7c3d33a532840aae32d573383cdaf107f7ff6 (diff)
- (dtucker) [configure.ac] FreeBSD's glob() doesn't behave the way we expect
either, so use our own.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac5
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index bb6b43e06..0702b01df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120080302
2 - (dtucker) [configure.ac] FreeBSD's glob() doesn't behave the way we expect
3 either, so use our own.
4
120080229 520080229
2 - (dtucker) [openbsd-compat/bsd-poll.c] We don't check for select(2) in 6 - (dtucker) [openbsd-compat/bsd-poll.c] We don't check for select(2) in
3 configure (and there's not much point, as openssh won't work without it) 7 configure (and there's not much point, as openssh won't work without it)
@@ -3653,4 +3657,4 @@
3653 OpenServer 6 and add osr5bigcrypt support so when someone migrates 3657 OpenServer 6 and add osr5bigcrypt support so when someone migrates
3654 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 3658 passwords between UnixWare and OpenServer they will still work. OK dtucker@
3655 3659
3656$Id: ChangeLog,v 1.4849 2008/02/29 11:53:40 djm Exp $ 3660$Id: ChangeLog,v 1.4850 2008/03/02 10:52:27 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index f84054321..017fd7e3d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.392 2008/02/28 12:16:04 dtucker Exp $ 1# $Id: configure.ac,v 1.393 2008/03/02 10:52:28 dtucker 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
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.392 $) 18AC_REVISION($Revision: 1.393 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -569,6 +569,7 @@ mips-sony-bsd|mips-sony-newsos4)
569 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way]) 569 AC_DEFINE(SSH_TUN_FREEBSD, 1, [Open tunnel devices the FreeBSD way])
570 AC_CHECK_HEADER([net/if_tap.h], , 570 AC_CHECK_HEADER([net/if_tap.h], ,
571 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support])) 571 AC_DEFINE(SSH_TUN_NO_L2, 1, [No layer 2 tunnel support]))
572 AC_DEFINE(BROKEN_GLOB, 1, [FreeBSD glob does not do what we need])
572 ;; 573 ;;
573*-*-bsdi*) 574*-*-bsdi*)
574 AC_DEFINE(SETEUID_BREAKS_SETUID) 575 AC_DEFINE(SETEUID_BREAKS_SETUID)