55 lines
2.1 KiB
Plaintext
55 lines
2.1 KiB
Plaintext
$OpenBSD: patch-include_config_h,v 1.4 2003/02/25 00:05:07 espie Exp $
|
|
--- include/config.h.orig Sun Feb 23 15:43:19 2003
|
|
+++ include/config.h Tue Feb 25 00:48:38 2003
|
|
@@ -84,7 +84,7 @@
|
|
|
|
#ifdef QT_GRAPHICS
|
|
# define DEFAULT_WC_TILED_MAP /* Default to tiles if users doesn't say wc_ascii_map */
|
|
-# define USER_SOUNDS /* Use sounds */
|
|
+/* # define USER_SOUNDS /* Use sounds */
|
|
# define USER_SOUNDS_REGEX
|
|
# define USE_XPM /* Use XPM format for images (required) */
|
|
# define GRAPHIC_TOMBSTONE /* Use graphical tombstone (rip.ppm) */
|
|
@@ -124,7 +124,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
|
|
@@ -139,6 +139,7 @@
|
|
* 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 */
|
|
@@ -167,11 +168,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
|
|
@@ -302,7 +305,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 */
|