blob: f8e8c48bac9b3dc06eba18d1d202ef1f6c205ff3 (
plain) (
blame)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
|
*** include/config.h.orig Thu Aug 29 23:53:20 1996
--- include/config.h Fri Aug 30 00:14:46 1996
***************
*** 210,216 ****
* Some combinations make no sense. See the installation document.
*/
#define TTY_GRAPHICS /* good old tty based graphics */
! /* #define X11_GRAPHICS /* X11 interface */
/*
** added by issei, Tue May 24 11:55:10 JST 1994
--- 210,216 ----
* Some combinations make no sense. See the installation document.
*/
#define TTY_GRAPHICS /* good old tty based graphics */
! #define X11_GRAPHICS /* X11 interface */
/*
** added by issei, Tue May 24 11:55:10 JST 1994
***************
*** 267,273 ****
* would allow:
* xpmtoppm <x11tiles.xpm | pnmscale 1.25 | ppmquant 90 >x11tiles_big.xpm
*/
! /* # define USE_XPM /* Disable if you do not have the XPM library */
# ifdef USE_XPM
# define GRAPHIC_TOMBSTONE /* Use graphical tombstone (rip.xpm) */
# endif
--- 267,273 ----
* would allow:
* xpmtoppm <x11tiles.xpm | pnmscale 1.25 | ppmquant 90 >x11tiles_big.xpm
*/
! # define USE_XPM /* Disable if you do not have the XPM library */
# ifdef USE_XPM
# define GRAPHIC_TOMBSTONE /* Use graphical tombstone (rip.xpm) */
# endif
***************
*** 307,318 ****
#ifdef UNIX
/* path and file name extension for compression program */
! # define COMPRESS "/usr/ucb/compress" /* Lempel-Ziv compression */
! # define COMPRESS_EXTENSION ".Z" /* compress's extension */
/* An example of one alternative you might want to use: */
! /* # define COMPRESS "/usr/local/bin/gzip" /* FSF gzip compression */
! /* # define COMPRESS_EXTENSION ".gz" /* normal gzip extension */
#endif
#ifndef COMPRESS
# define INTERNAL_COMP /* control use of NetHack's compression routines */
--- 307,318 ----
#ifdef UNIX
/* path and file name extension for compression program */
! /* # define COMPRESS "/usr/ucb/compress" /* Lempel-Ziv compression */
! /* # define COMPRESS_EXTENSION ".Z" /* compress's extension */
/* An example of one alternative you might want to use: */
! # define COMPRESS "/usr/bin/gzip" /* FSF gzip compression */
! # define COMPRESS_EXTENSION ".gz" /* normal gzip extension */
#endif
#ifndef COMPRESS
# define INTERNAL_COMP /* control use of NetHack's compression routines */
***************
*** 342,348 ****
* otherwise it will be the current directory.
*/
# ifndef HACKDIR
! # define HACKDIR "/usr/games/lib/jnethackdir" /* nethack directory */
# endif
/*
--- 342,348 ----
* otherwise it will be the current directory.
*/
# ifndef HACKDIR
! # define HACKDIR "/usr/local/lib/jnethackdir" /* nethack directory */
# endif
/*
|