1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

<sys/socket.h> requires <sys/types.h> to already have been included

on some platforms.
This commit is contained in:
Tom Lane
2003-06-12 16:05:10 +00:00
parent 889dd3c00d
commit ccd99a5eb5
3 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
dnl $Header: /cvsroot/pgsql/configure.in,v 1.259 2003/06/12 07:36:50 momjian Exp $
dnl $Header: /cvsroot/pgsql/configure.in,v 1.260 2003/06/12 16:05:09 tgl Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
@ -794,6 +794,7 @@ PGAC_STRUCT_ADDRINFO
AC_CHECK_TYPES([struct cmsgcred, struct fcred, struct sockcred], [], [],
[#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ucred.h>])