1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
$NetBSD: patch-ab,v 1.8 2005/11/21 09:47:45 rillig Exp $
--- config.h.orig 1993-11-24 09:36:07.000000000 -0600
+++ config.h
@@ -40,7 +40,7 @@ WITHOUT ANY EXPRESS OR IMPLIED WARRANTIE
#define SYSV /* Linux is SysV */
#endif
-#ifdef SVR3
+#if defined(SVR3) || defined(__sgi)
#ifndef SYSV
/* Stupid SGI machines define SVR3 but not SYSV */
#define SYSV
@@ -65,6 +65,12 @@ WITHOUT ANY EXPRESS OR IMPLIED WARRANTIE
#endif
#endif
+/* agc - test for 4.4 BSD-derived systems properly */
+#include <sys/param.h>
+#if (defined(BSD) && BSD >= 199306)
+#define __BSD_4_4__
+#endif
+
/* NOTE: The RESET_PROGRAM resets the terminal to a "normal" state
If you comment out the definition, all will be well except that metamail's
-R switch won't work, and metamail-called programs might be more likely
@@ -100,9 +106,13 @@ WITHOUT ANY EXPRESS OR IMPLIED WARRANTIE
#endif
#ifdef SYSV
+#if !(defined(__sun__) && defined(__svr4__)) && !defined(LINUX) && !(defined(__sun) && defined(__SVR4))
#define killpg(a, b) kill(-(a), (b))
+#endif
#define bcopy(a, b, c) memcpy(b, a, c)
+#ifndef LINUX
#define bzero(a, b) memset(a, 0, b)
+#endif
#define bcmp memcmp
#define index strchr
#define rindex strrchr
@@ -155,9 +165,13 @@ WITHOUT ANY EXPRESS OR IMPLIED WARRANTIE
#ifdef NeXT
#define sigtype void
#else
+#if defined(__BSD_4_4__)
+#define sigtype void
+#else
#define sigtype int
#endif
#endif
+#endif
#ifdef MSDOS
#define PATH_SEPARATOR ';'
@@ -173,7 +187,7 @@ WITHOUT ANY EXPRESS OR IMPLIED WARRANTIE
#else
#define PATH_SEPARATOR ':'
#ifndef STDPATH
-#define STDPATH "/.mailcap:/usr/local/etc/mailcap:/usr/etc/mailcap:/etc/mailcap:/etc/mail/mailcap:/usr/public/lib/mailcap"
+#define STDPATH "/.mailcap:" PKG_SYSCONFDIR "/mailcap"
#endif
#endif
#endif
|