summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordtucker <dtucker>2006-03-15 10:31:39 +0000
committerdtucker <dtucker>2006-03-15 10:31:39 +0000
commitfc4c32660e18b97ce18256ec0459a6de8b3a07e7 (patch)
treea9daac7a5acda98b4666e9cc4bb84b5dee790b46
parent650aa10b4008b28a1a16b47a1595289aa75503cb (diff)
downloadopenssh-fc4c32660e18b97ce18256ec0459a6de8b3a07e7.tar.gz
- (dtucker) [configure.ac] Fix glob test conversion to AC_TRY_COMPILE
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac6
2 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c0a0a4eb..0141c327 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -267,6 +267,7 @@
- (tim) [includes.h] put sys/stat.h back in to quiet some "macro redefined:"
- (tim) [openssh/sshpty.c openssh/openbsd-compat/port-tun.c] put in some
includes removed from includes.h
+ - (dtucker) [configure.ac] Fix glob test conversion to AC_TRY_COMPILE
20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@@ -4168,4 +4169,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.4220 2006/03/15 06:09:50 tim Exp $
+$Id: ChangeLog,v 1.4221 2006/03/15 10:31:39 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index fc54f3b5..72577a72 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.335 2006/03/15 02:12:41 djm Exp $
+# $Id: configure.ac,v 1.336 2006/03/15 10:31:39 dtucker 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.335 $)
+AC_REVISION($Revision: 1.336 $)
AC_CONFIG_SRCDIR([ssh.c])
AC_CONFIG_HEADER(config.h)
@@ -924,7 +924,7 @@ AC_EGREP_CPP(FOUNDIT,
# Check for g.gl_matchc glob() extension
AC_MSG_CHECKING(for gl_matchc field in glob_t)
-AC_TRY_COMPILE(FOUNDIT,
+AC_TRY_COMPILE(
[ #include <glob.h> ],
[glob_t g; g.gl_matchc = 1;],
[