mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
523b9b7615
Fixed the path to gzip. PR: ports/16417 Submitted by: Gregory Bond <gnb@itga.com.au>
46 lines
1.7 KiB
Plaintext
46 lines
1.7 KiB
Plaintext
--- ./include/config.h.orig Sat Dec 11 00:20:49 1999
|
|
+++ ./include/config.h Sun Dec 12 20:28:09 1999
|
|
@@ -43,7 +43,7 @@
|
|
* Some combinations make no sense. See the installation document.
|
|
*/
|
|
#define TTY_GRAPHICS /* good old tty based graphics */
|
|
-/* #define X11_GRAPHICS */ /* X11 interface */
|
|
+#define X11_GRAPHICS /* X11 interface */
|
|
/* #define QT_GRAPHICS */ /* Qt interface */
|
|
|
|
/*
|
|
@@ -92,7 +92,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
|
|
@@ -133,11 +133,11 @@
|
|
|
|
#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" /* FSF gzip compression */
|
|
+#define COMPRESS_EXTENSION ".gz" /* normal gzip extension */
|
|
#endif
|
|
|
|
#ifndef COMPRESS
|
|
@@ -168,7 +168,7 @@
|
|
* otherwise it will be the current directory.
|
|
*/
|
|
# ifndef HACKDIR
|
|
-# define HACKDIR "/usr/games/lib/nethackdir" /* nethack directory */
|
|
+# define HACKDIR "/usr/local/share/nethack" /* nethack directory */
|
|
# endif
|
|
|
|
/*
|