- (dtucker) [configure.ac] Fix glob test conversion to AC_TRY_COMPILE
This commit is contained in:
parent
4b23f7c660
commit
486d95e6f7
|
@ -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 $
|
||||
|
|
|
@ -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;],
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue