patch-include_config_h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. $OpenBSD: patch-include_config_h,v 1.1.1.1 2001/07/05 13:29:05 espie Exp $
  2. --- include/config.h.orig Tue Jul 3 18:56:52 2001
  3. +++ include/config.h Wed Jul 4 11:23:29 2001
  4. @@ -146,7 +146,7 @@
  5. * would allow:
  6. * xpmtoppm <x11tiles.xpm | pnmscale 1.25 | ppmquant 90 >x11tiles_big.xpm
  7. */
  8. -/* # define USE_XPM */ /* Disable if you do not have the XPM library */
  9. +# define USE_XPM /* Disable if you do not have the XPM library */
  10. # ifdef USE_XPM
  11. # define GRAPHIC_TOMBSTONE /* Use graphical tombstone (rip.xpm) */
  12. # endif
  13. @@ -160,6 +160,7 @@
  14. * LOGFILE and NEWS refer to files in the playground.
  15. */
  16. +#define WIZARD "games"
  17. #ifndef WIZARD /* allow for compile-time or Makefile changes */
  18. # ifndef KR1ED
  19. # define WIZARD "wizard" /* the person allowed to use the -D option */
  20. @@ -187,11 +188,13 @@
  21. #ifdef UNIX
  22. /* path and file name extension for compression program */
  23. -#define COMPRESS "/usr/bin/compress" /* Lempel-Ziv compression */
  24. -#define COMPRESS_EXTENSION ".Z" /* compress's extension */
  25. +/* #define COMPRESS "/usr/bin/compress" /* Lempel-Ziv compression */
  26. +/* #define COMPRESS_EXTENSION ".Z" /* compress's extension */
  27. /* An example of one alternative you might want to use: */
  28. /* #define COMPRESS "/usr/local/bin/gzip" */ /* FSF gzip compression */
  29. /* #define COMPRESS_EXTENSION ".gz" */ /* normal gzip extension */
  30. +#define COMPRESS "/usr/bin/gzip"
  31. +#define COMPRESS_EXTENSION ".gz"
  32. #endif
  33. #ifndef COMPRESS
  34. @@ -318,7 +321,7 @@ typedef unsigned char uchar;
  35. * functions that have been macroized.
  36. */
  37. -/* #define VISION_TABLES */ /* use vision tables generated at compile time */
  38. +#define VISION_TABLES /* use vision tables generated at compile time */
  39. #ifndef VISION_TABLES
  40. # ifndef NO_MACRO_CPATH
  41. # define MACRO_CPATH /* use clear_path macros instead of functions */