27 lines
1 KiB
C
27 lines
1 KiB
C
--- include/config.h.orig 2015-11-17 05:58:34 UTC
|
|
+++ include/config.h
|
|
@@ -250,11 +250,11 @@
|
|
|
|
#if defined(UNIX) && !defined(ZLIB_COMP) && !defined(COMPRESS)
|
|
/* 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" /* FSF gzip compression */
|
|
+#define COMPRESS_EXTENSION ".gz" /* normal gzip extension */
|
|
#endif
|
|
|
|
#ifndef COMPRESS
|
|
@@ -317,7 +317,7 @@
|
|
* otherwise it will be the current directory.
|
|
*/
|
|
#ifndef HACKDIR
|
|
-#define HACKDIR "/usr/games/lib/nethackdir"
|
|
+#define HACKDIR "%%PREFIX%%/share/nethack"
|
|
#endif
|
|
|
|
/*
|