mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 00:04:30 +02:00
- (djm) [configure.ac] in_addr_t test needs sys/types.h too
This commit is contained in:
parent
2ea9b18918
commit
848b993639
@ -1,3 +1,6 @@
|
|||||||
|
20050222
|
||||||
|
- (djm) [configure.ac] in_addr_t test needs sys/types.h too
|
||||||
|
|
||||||
20050222
|
20050222
|
||||||
- (dtucker) [uidswap.c] Skip uid restore test on Cygwin. Patch from
|
- (dtucker) [uidswap.c] Skip uid restore test on Cygwin. Patch from
|
||||||
vinschen at redhat.com.
|
vinschen at redhat.com.
|
||||||
@ -2160,4 +2163,4 @@
|
|||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3662 2005/02/22 06:57:13 dtucker Exp $
|
$Id: ChangeLog,v 1.3663 2005/02/24 01:12:34 djm Exp $
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $Id: configure.ac,v 1.246 2005/02/20 12:27:11 dtucker Exp $
|
# $Id: configure.ac,v 1.247 2005/02/24 01:12:35 djm Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
@ -1877,7 +1877,9 @@ TYPE_SOCKLEN_T
|
|||||||
|
|
||||||
AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
|
AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
|
||||||
|
|
||||||
AC_CHECK_TYPES(in_addr_t,,,[#include <netinet/in.h>])
|
AC_CHECK_TYPES(in_addr_t,,,
|
||||||
|
[#include <sys/types.h>
|
||||||
|
#include <netinet/in.h>])
|
||||||
|
|
||||||
AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
|
AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
|
||||||
AC_TRY_COMPILE(
|
AC_TRY_COMPILE(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user