From 4ed73b6f071b43dcb9f79eaf8821ccaaa268ebfb Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Sun, 23 Dec 2001 03:28:03 +0000 Subject: Fixed up the order of some of the includes to cope with OpenBSD. Also, test for the MSG_NOSIGNAL define. --- src/tinyproxy.h | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/tinyproxy.h b/src/tinyproxy.h index 61a00a7..02efd71 100644 --- a/src/tinyproxy.h +++ b/src/tinyproxy.h @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.h,v 1.23 2001-11-26 05:23:49 rjkaes Exp $ +/* $Id: tinyproxy.h,v 1.24 2001-12-23 03:28:03 rjkaes Exp $ * * See 'tinyproxy.c' for a detailed description. * @@ -40,9 +40,6 @@ #ifdef HAVE_SYS_IOCTL_H # include #endif -#ifdef HAVE_SYS_RESOURCE_H -# include -#endif #ifdef HAVE_SYS_SELECT_H # include #endif @@ -71,6 +68,9 @@ # endif #endif +#ifdef HAVE_SYS_RESOURCE_H +# include +#endif #ifdef HAVE_SYS_UIO_H # include #endif @@ -158,6 +158,14 @@ # include #endif +/* + * If MSG_NOSIGNAL is not defined, define it to be zero so that it doesn't + * cause any problems. + */ +#ifndef MSG_NOSIGNAL +# define MSG_NOSIGNAL (0) +#endif + #ifndef SHUT_RD /* these three Posix.1g names are quite new */ # define SHUT_RD 0 /* shutdown for reading */ # define SHUT_WR 1 /* shutdown for writing */ -- cgit v1.2.3