pkgsrc/games/craft/patches/patch-compress_h
dholland a2c55dd58b Assorted fixes and cleanup.
- if we're going to supply the build makefile, it shouldn't require gmake.
 - don't install executable html or gif files
 - add patch comments
 - const correctness for string constants, as demanded by gcc 4.5
 - avoid needing -lcompat
 - fix a y2038 issue

PKGREVISION -> 2
2011-12-20 16:18:16 +00:00

15 lines
432 B
Text

$NetBSD: patch-compress_h,v 1.1 2011/12/20 16:18:16 dholland Exp $
- const correctness demanded by recent gcc
--- compress.h~ 1997-02-21 11:48:58.000000000 +0000
+++ compress.h
@@ -26,7 +26,7 @@ class compress
compress ();
~compress ();
- char *frame_name (char postfix []);
+ char *frame_name (const char postfix []);
void encode (char name []);
void decode (char name []);