summaryrefslogtreecommitdiff
path: root/games/nethack-lib/patches/patch-af
blob: c009e80eccd0b30d51aa792fc8f226dfd4088d6f (plain)
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
64
65
66
67
$NetBSD: patch-af,v 1.7 2011/06/01 11:20:29 wiz Exp $

Make configurable.
Fix for BSD.

--- include/unixconf.h.orig	2003-12-07 23:39:13.000000000 +0000
+++ include/unixconf.h
@@ -19,20 +19,21 @@
  */
 
 /* define exactly one of the following four choices */
-/* #define BSD 1 */	/* define for 4.n/Free/Open/Net BSD  */
+#define __NETHACK_OS__ 1
+/* #define BSD */	/* define for 4.n/Free/Open/Net BSD  */
 			/* also for relatives like SunOS 4.x, DG/UX, and */
 			/* older versions of Linux */
 /* #define ULTRIX */	/* define for Ultrix v3.0 or higher (but not lower) */
 			/* Use BSD for < v3.0 */
 			/* "ULTRIX" not to be confused with "ultrix" */
-#define SYSV		/* define for System V, Solaris 2.x, newer versions */
+/* #define SYSV	*/	/* define for System V, Solaris 2.x, newer versions */
 			/* of Linux */
 /* #define HPUX */	/* Hewlett-Packard's Unix, version 6.5 or higher */
 			/* use SYSV for < v6.5 */
 
 
 /* define any of the following that are appropriate */
-#define SVR4		/* use in addition to SYSV for System V Release 4 */
+/* #define SVR4	*/	/* use in addition to SYSV for System V Release 4 */
 			/* including Solaris 2+ */
 #define NETWORK		/* if running on a networked system */
 			/* e.g. Suns sharing a playground through NFS */
@@ -47,7 +48,7 @@
 			 * job control (note that AIX is SYSV otherwise)
 			 * Also define this for AIX 3.2 */
 
-#define TERMINFO	/* uses terminfo rather than termcap */
+/* #define TERMINFO	/* uses terminfo rather than termcap */
 			/* Should be defined for most SYSV, SVR4 (including
 			 * Solaris 2+), HPUX, and Linux systems.  In
 			 * particular, it should NOT be defined for the UNIXPC
@@ -103,6 +104,7 @@
  * system, define VAR_PLAYGROUND to be where the variable parts are kept.
  */
 /* #define VAR_PLAYGROUND "/var/lib/games/nethack" */
+#define VAR_PLAYGROUND "/var/games/nethack340"
 
 
 /*
@@ -171,7 +173,7 @@
 #  ifdef AMS
 #define AMS_MAILBOX	"/Mailbox"
 #  else
-#   if defined(__FreeBSD__) || defined(__OpenBSD__)
+#   if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
 #define DEF_MAILREADER	"/usr/bin/mail"
 #   else
 #define DEF_MAILREADER	"/usr/ucb/Mail"
@@ -284,7 +286,7 @@
 #endif
 
 #if defined(BSD) || defined(ULTRIX)
-# if !defined(DGUX) && !defined(SUNOS4)
+# if !defined(DGUX) && !defined(SUNOS4) && !defined(BSD)
 #define memcpy(d, s, n)		bcopy(s, d, n)
 #define memcmp(s1, s2, n)	bcmp(s2, s1, n)
 # endif