- (dtucker) [configure.ac] Some other platforms need sys/types.h before

sys/socket.h.
This commit is contained in:
Darren Tucker 2013-06-04 12:55:24 +10:00
parent 0b43ffe143
commit 16cac190eb
2 changed files with 5 additions and 3 deletions

View File

@ -20,6 +20,8 @@
feedback and ok dtucker
- (tim) [regress/sftp-chroot.sh] skip if no sudo. ok dtucker
- (dtucker) [configure.ac] Some platforms need sys/types.h before sys/un.h.
- (dtucker) [configure.ac] Some other platforms need sys/types.h before
sys/socket.h.
20130601
- (dtucker) [configure.ac openbsd-compat/xcrypt.c] bz#2112: fall back to

View File

@ -1,4 +1,4 @@
# $Id: configure.ac,v 1.532 2013/06/02 23:30:45 dtucker Exp $
# $Id: configure.ac,v 1.533 2013/06/04 02:55:24 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.532 $)
AC_REVISION($Revision: 1.533 $)
AC_CONFIG_SRCDIR([ssh.c])
AC_LANG([C])
@ -387,8 +387,8 @@ AC_CHECK_HEADERS([sys/mount.h], [], [], [
# Android requires sys/socket.h to be included before sys/un.h
AC_CHECK_HEADERS([sys/un.h], [], [], [
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/socket.h>
])
# Messages for features tested for in target-specific section