diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2001-08-24 10:52:28 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2001-08-24 10:52:28 +0000 |
commit | be2dc01b73670347ebc0a94ae7ea205eb6cac27f (patch) | |
tree | ad9976c45f7ac5710aad3d526fb975bd2ad64a81 /games/falconseye/files/patch-include_config_h | |
parent | Upgrade to 0.1.7 (diff) |
Add falconseye 1.9.3, a roguelike game heavily based on nethack.
If you've ever wondered what NetHack would be like with sound effects,
a MIDI soundtrack, a GUI and isometric dungeon interface a la Diablo,
here's your chance.
Obtained from: OpenBSD (after unsmoking much crack)
Notes
Notes:
svn path=/head/; revision=46776
Diffstat (limited to 'games/falconseye/files/patch-include_config_h')
-rw-r--r-- | games/falconseye/files/patch-include_config_h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/games/falconseye/files/patch-include_config_h b/games/falconseye/files/patch-include_config_h new file mode 100644 index 000000000000..2d236d64bf49 --- /dev/null +++ b/games/falconseye/files/patch-include_config_h @@ -0,0 +1,44 @@ +--- include/config.h.orig Tue Jul 3 18:56:52 2001 ++++ include/config.h Wed Jul 4 11:23:29 2001 +@@ -146,7 +146,7 @@ + * 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 */ ++# define USE_XPM /* Disable if you do not have the XPM library */ + # ifdef USE_XPM + # define GRAPHIC_TOMBSTONE /* Use graphical tombstone (rip.xpm) */ + # endif +@@ -160,6 +160,7 @@ + * LOGFILE and NEWS refer to files in the playground. + */ + ++#define WIZARD "games" + #ifndef WIZARD /* allow for compile-time or Makefile changes */ + # ifndef KR1ED + # define WIZARD "wizard" /* the person allowed to use the -D option */ +@@ -187,11 +188,13 @@ + + #ifdef UNIX + /* path and file name extension for compression program */ +-#define COMPRESS "/usr/bin/compress" /* Lempel-Ziv compression */ +-#define COMPRESS_EXTENSION ".Z" /* compress's extension */ ++/* #define COMPRESS "/usr/bin/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 */ ++#define COMPRESS "/usr/bin/gzip" ++#define COMPRESS_EXTENSION ".gz" + #endif + + #ifndef COMPRESS +@@ -318,7 +321,7 @@ typedef unsigned char uchar; + * functions that have been macroized. + */ + +-/* #define VISION_TABLES */ /* use vision tables generated at compile time */ ++#define VISION_TABLES /* use vision tables generated at compile time */ + #ifndef VISION_TABLES + # ifndef NO_MACRO_CPATH + # define MACRO_CPATH /* use clear_path macros instead of functions */ |