diff options
author | minskim <minskim@pkgsrc.org> | 2006-02-24 02:52:22 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2006-02-24 02:52:22 +0000 |
commit | c79b51cb8f58b4c4fbb0b306d57ff2e896e6b488 (patch) | |
tree | 226c359f4e4fbaa738f21c1a84e15f46c2fe0baa /graphics/dia | |
parent | 143fb4cd00483e1a1e8587ec02e533a46fcbb3c6 (diff) | |
download | pkgsrc-c79b51cb8f58b4c4fbb0b306d57ff2e896e6b488.tar.gz |
Do not declare a static function as non-static. This makes the package
build with gcc-4.
Diffstat (limited to 'graphics/dia')
-rw-r--r-- | graphics/dia/distinfo | 3 | ||||
-rw-r--r-- | graphics/dia/patches/patch-ab | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/graphics/dia/distinfo b/graphics/dia/distinfo index cd355f9a409..3a234c1054a 100644 --- a/graphics/dia/distinfo +++ b/graphics/dia/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.13 2005/02/24 08:45:04 agc Exp $ +$NetBSD: distinfo,v 1.14 2006/02/24 02:52:22 minskim Exp $ SHA1 (dia-0.94.tar.gz) = a55128bd56e76295c9bc8217f25b6ec079727e25 RMD160 (dia-0.94.tar.gz) = f7e20b294b7b739d5f408c34e0fbc533def5e3b9 Size (dia-0.94.tar.gz) = 5241128 bytes SHA1 (patch-aa) = f556878638291a696894181c5a6907e688589530 +SHA1 (patch-ab) = f419cc82faa524ac1f02e88ae3264fcb9b453e09 SHA1 (patch-be) = dab7626daefcd702b31f54d198311d9be921e1ff diff --git a/graphics/dia/patches/patch-ab b/graphics/dia/patches/patch-ab new file mode 100644 index 00000000000..664cf78e7e8 --- /dev/null +++ b/graphics/dia/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.3 2006/02/24 02:52:22 minskim Exp $ + +--- objects/custom/shape_info.h.orig 2004-08-16 00:56:15.000000000 -0700 ++++ objects/custom/shape_info.h +@@ -166,7 +166,6 @@ ShapeInfo *shape_info_getbyname(const gc + + void shape_info_realise(ShapeInfo* info); + void shape_info_print(ShapeInfo *info); +-void parse_path(ShapeInfo *info, const char *path_str, DiaSvgGraphicStyle *s); + + /*MC 11/03 handy g_new0 variant for struct with variable size */ + #define g_new0_ext(struct_type, ext_size) \ |