diff options
Diffstat (limited to 'mail/mailagent/files/patch-ac')
-rw-r--r-- | mail/mailagent/files/patch-ac | 52 |
1 files changed, 21 insertions, 31 deletions
diff --git a/mail/mailagent/files/patch-ac b/mail/mailagent/files/patch-ac index a6e05f1db4b5..494de74149ff 100644 --- a/mail/mailagent/files/patch-ac +++ b/mail/mailagent/files/patch-ac @@ -1,31 +1,21 @@ -*** agent/filter/io.c.orig Fri Sep 1 05:11:42 1995 ---- agent/filter/io.c Fri Mar 29 04:05:28 1996 -*************** -*** 69,74 **** ---- 69,77 ---- - #include <stdio.h> - #include <errno.h> - #include <sys/stat.h> -+ #ifdef _HAVE_PARAM_H -+ #include <sys/param.h> -+ #endif - - #ifdef I_SYS_WAIT - #include <sys/wait.h> -*************** -*** 428,434 **** - */ - - char **envp; /* Environment pointer */ -! #ifdef UNION_WAIT - union wait status; /* Waiting status */ - #else - int status; /* Status from command */ ---- 431,437 ---- - */ - - char **envp; /* Environment pointer */ -! #if defined(UNION_WAIT) && !defined(BSD) - union wait status; /* Waiting status */ - #else - int status; /* Status from command */ +--- agent/filter/io.c.orig Fri Dec 27 00:55:27 1996 ++++ agent/filter/io.c Thu Jan 16 14:11:00 1997 +@@ -110,6 +110,9 @@ + #ifdef I_SYS_IOCTL + #include <sys/ioctl.h> + #endif ++#ifdef I_SYS_PARAM ++#include <sys/param.h> ++#endif + + /* + * The following should be defined in <sys/stat.h>. +@@ -635,7 +638,7 @@ + */ + + char **envp; /* Environment pointer */ +-#ifdef UNION_WAIT ++#if defined(UNION_WAIT) && (!defined(BSD) || BSD < 199306) + union wait status; /* Waiting status */ + #else + int status; /* Status from command */ |