diff options
author | dillo <dillo> | 2001-12-12 05:57:29 +0000 |
---|---|---|
committer | dillo <dillo> | 2001-12-12 05:57:29 +0000 |
commit | 277ff5b796aaaaeb1adc12f842d526dfdeb7002d (patch) | |
tree | adb7d8bd79c906aa1217269251ef0f615e327df4 | |
parent | b91eece0e52d85a691c02ce25afd6887ad78ec10 (diff) | |
download | pkgsrc-277ff5b796aaaaeb1adc12f842d526dfdeb7002d.tar.gz |
Fix LP64 bug. Thanks to Michael L. Hitch for tracking it down.
-rw-r--r-- | www/dillo/distinfo | 3 | ||||
-rw-r--r-- | www/dillo/patches/patch-ac | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/www/dillo/distinfo b/www/dillo/distinfo index 19de559aac2..0a2fe78952d 100644 --- a/www/dillo/distinfo +++ b/www/dillo/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.3 2001/12/10 15:32:41 joda Exp $ +$NetBSD: distinfo,v 1.4 2001/12/12 05:57:29 dillo Exp $ SHA1 (dillo-0.6.2.tar.gz) = 68b0b3fe756190c31964442108617c56d35cd214 Size (dillo-0.6.2.tar.gz) = 279913 bytes SHA1 (patch-aa) = 1ae5a680306102d03d587acfbbf16cbf1f5df366 SHA1 (patch-ab) = cc29d319185430df26865f84f704fae9a888519f +SHA1 (patch-ac) = 9b70f6529045ba19978a7391159e08305858bf4f diff --git a/www/dillo/patches/patch-ac b/www/dillo/patches/patch-ac new file mode 100644 index 00000000000..d15f1e4c55f --- /dev/null +++ b/www/dillo/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2001/12/12 05:57:29 dillo Exp $ + +--- src/dw_table.c.orig Tue Oct 16 19:49:25 2001 ++++ src/dw_table.c +@@ -661,7 +661,7 @@ + a_List_resize (table->cum_height, table->num_rows, sizeof(gint32), + table->cum_height_max); + table->num_rows--; +- a_List_resize (table->row_style, table->num_rows, sizeof(gint32), ++ a_List_resize (table->row_style, table->num_rows, sizeof(DwStyle*), + table->row_style_max); + + old_num_children = table->num_children; |