diff options
author | jmmv <jmmv> | 2004-03-09 22:05:08 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2004-03-09 22:05:08 +0000 |
commit | fdf9053c98684ff53f5a8e0d688e7bf21237b4bb (patch) | |
tree | 8af5b6ef37a3b152cbd28952be0804b44288ddfc /editors/conglomerate | |
parent | a8a6211f414411e94d63aecaba92babfd8983c24 (diff) | |
download | pkgsrc-fdf9053c98684ff53f5a8e0d688e7bf21237b4bb.tar.gz |
Fix build under 1.6.2 caused by a C99-ism.
Noted by last kristerw's bulk build.
Diffstat (limited to 'editors/conglomerate')
-rw-r--r-- | editors/conglomerate/distinfo | 3 | ||||
-rw-r--r-- | editors/conglomerate/patches/patch-aa | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/editors/conglomerate/distinfo b/editors/conglomerate/distinfo index f1daf67a48a..35fc44bfa1c 100644 --- a/editors/conglomerate/distinfo +++ b/editors/conglomerate/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.5 2004/02/17 23:25:45 jmmv Exp $ +$NetBSD: distinfo,v 1.6 2004/03/09 22:05:08 jmmv Exp $ SHA1 (conglomerate-0.7.12.tar.gz) = 878c53f8eb837a1548f5cd3ec4cc41980b9d3e58 Size (conglomerate-0.7.12.tar.gz) = 1996197 bytes +SHA1 (patch-aa) = 6bcfa30f58bd6a1e82ba7faa897face18fb01839 diff --git a/editors/conglomerate/patches/patch-aa b/editors/conglomerate/patches/patch-aa new file mode 100644 index 00000000000..aba80833b31 --- /dev/null +++ b/editors/conglomerate/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.3 2004/03/09 22:05:08 jmmv Exp $ + +--- src/cong-editor-node-element-span.c.orig 2004-02-17 18:24:28.000000000 +0100 ++++ src/cong-editor-node-element-span.c +@@ -145,9 +145,8 @@ generate_line_areas_recursive (CongEdito + + if (child_line_fragments) { + GList* list_of_areas; +- list_of_areas = cong_editor_line_fragments_get_area_list (child_line_fragments); +- + gboolean is_first = TRUE; ++ list_of_areas = cong_editor_line_fragments_get_area_list (child_line_fragments); + + while (list_of_areas) { + |