From e09ed18320b4d90f71c02a3ac2274b8fc6209796 Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Tue, 7 Sep 2004 08:42:02 +0000 Subject: using #ifdef HAVE_SYS_TYPES_H around some of the includes making problems, but still uncompilable on win32!!! svn path=/trunk/; revision=11921 --- gtk/sctp_stat.h | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'gtk/sctp_stat.h') diff --git a/gtk/sctp_stat.h b/gtk/sctp_stat.h index 6f9e99f4b7..699384df3c 100644 --- a/gtk/sctp_stat.h +++ b/gtk/sctp_stat.h @@ -22,10 +22,16 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include -#include -#include -#include +#include +#ifdef HAVE_SYS_TYPES_H +#include +#endif +#ifdef HAVE_SYS_SOCKET_H +#include +#endif +#ifndef WIN32 +#include +#endif #define SCTP_DATA_CHUNK_ID 0 #define SCTP_INIT_CHUNK_ID 1 -- cgit v1.2.3