loading and saving pngs work. While here, fix a small string buffer that was truncating some libpng messages, and avoid a linker warning by using getcwd instead of getwd on BSDs. No version bump as it hasn't been buildable since the previous bump.
16 lines
426 B
Text
16 lines
426 B
Text
$NetBSD: patch-ag,v 1.5 2011/01/23 23:58:01 dholland Exp $
|
|
|
|
Avoid truncating warning messages; some from libpng are more than 80
|
|
characters long.
|
|
|
|
--- xvinfo.c.orig 2011-01-23 23:25:49.000000000 +0000
|
|
+++ xvinfo.c
|
|
@@ -26,7 +26,7 @@
|
|
#define INFOHIGH 270
|
|
|
|
/* max length of an Info String */
|
|
-#define ISTRLEN 80
|
|
+#define ISTRLEN 256
|
|
|
|
/* baseline of top line of text */
|
|
#define TOPBASE (36 + penn_height/2 + 4 + 8 + ASCENT)
|