From: Thomas Roessler Date: Mon, 10 Jan 2000 10:42:40 +0000 (+0000) Subject: To compile on SunOs 4.1.4, the order of two includes needs to be X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fda45a30f44e5f2213a340dc544f776f1683222e;p=neomutt To compile on SunOs 4.1.4, the order of two includes needs to be switched ( contains a struct timeval.) From Mark Seiden . --- diff --git a/pgp.c b/pgp.c index 94129f53a..31305b673 100644 --- a/pgp.c +++ b/pgp.c @@ -39,14 +39,14 @@ #include #include -#ifdef HAVE_SYS_RESOURCE_H -# include -#endif - #ifdef HAVE_SYS_TIME_H # include #endif +#ifdef HAVE_SYS_RESOURCE_H +# include +#endif + #ifdef _PGPPATH