View | Details | Raw Unified | Return to bug 169416
Collapse All | Expand All

(-)games/tuxtype/Makefile (-2 lines)
Lines 21-28 Link Here
21
21
22
BUILD_DEPENDS=	gsed:${PORTSDIR}/textproc/gsed
22
BUILD_DEPENDS=	gsed:${PORTSDIR}/textproc/gsed
23
23
24
BROKEN=		does not compile
25
26
OPTIONS_DEFINE=	NLS SVG DOCS
24
OPTIONS_DEFINE=	NLS SVG DOCS
27
OPTIONS_DEFAULT=	SVG
25
OPTIONS_DEFAULT=	SVG
28
26
(-)games/tuxtype/files/patch-t4k_loaders.c (+18 lines)
Line 0 Link Here
1
--- ../t4k_common/src/t4k_loaders.c.orig	2011-04-08 11:46:07.000000000 +0900
2
+++ ../t4k_common/src/t4k_loaders.c	2012-06-17 18:57:09.000000000 +0900
3
@@ -1028,12 +1028,9 @@
4
       {
5
         png_init_io(png_ptr, fi);
6
 
7
-        info_ptr->width = surf->w;
8
-        info_ptr->height = surf->h;
9
-        info_ptr->bit_depth = 8;
10
-        info_ptr->color_type = PNG_COLOR_TYPE_RGB_ALPHA;
11
-        info_ptr->interlace_type = 1;
12
-        info_ptr->valid = 0;	/* will be updated by various png_set_FOO() functions */
13
+        png_set_IHDR(png_ptr, info_ptr, surf->w, surf->h, 8,
14
+                       PNG_COLOR_TYPE_RGB_ALPHA, 1,
15
+                       PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
16
 
17
         png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
18
                        PNG_sRGB_INTENT_PERCEPTUAL);

Return to bug 169416