diff options
author | jmmv <jmmv@pkgsrc.org> | 2005-06-05 09:36:47 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2005-06-05 09:36:47 +0000 |
commit | 15f6d2ab4e9ebf9b1c22a4e75bcbb289a74c29da (patch) | |
tree | df44de4440c0e740946f884f41a6417ca65391f8 /print/libgnomeprint | |
parent | a47b47fe72ec63f3d2e5caeb7dae54b473e6e971 (diff) | |
download | pkgsrc-15f6d2ab4e9ebf9b1c22a4e75bcbb289a74c29da.tar.gz |
Fix build under Dragonfly (errno fallout). Patch from Joerg Sonnenberger.
Diffstat (limited to 'print/libgnomeprint')
-rw-r--r-- | print/libgnomeprint/distinfo | 4 | ||||
-rw-r--r-- | print/libgnomeprint/patches/patch-aa | 14 | ||||
-rw-r--r-- | print/libgnomeprint/patches/patch-ab | 14 |
3 files changed, 31 insertions, 1 deletions
diff --git a/print/libgnomeprint/distinfo b/print/libgnomeprint/distinfo index 3964800ca1b..df22053a3d5 100644 --- a/print/libgnomeprint/distinfo +++ b/print/libgnomeprint/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.19 2005/04/26 18:07:49 drochner Exp $ +$NetBSD: distinfo,v 1.20 2005/06/05 09:36:47 jmmv Exp $ SHA1 (libgnomeprint-2.10.3.tar.bz2) = b0fe6fad7737c70eec526db4092560d7bb4b8587 RMD160 (libgnomeprint-2.10.3.tar.bz2) = 6d91bb094905321f4b9af392f60151bfadbdd92c Size (libgnomeprint-2.10.3.tar.bz2) = 727745 bytes +SHA1 (patch-aa) = 73dffa07cb1218b41784563dc822c08b3455fd59 +SHA1 (patch-ab) = 04499f4ce10315b894d85228588c24e9576f4df3 diff --git a/print/libgnomeprint/patches/patch-aa b/print/libgnomeprint/patches/patch-aa new file mode 100644 index 00000000000..a3e6f9e9e54 --- /dev/null +++ b/print/libgnomeprint/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.5 2005/06/05 09:36:47 jmmv Exp $ + +--- libgnomeprint/gpa/gpa-node.c.orig 2005-06-03 00:26:22.000000000 +0200 ++++ libgnomeprint/gpa/gpa-node.c +@@ -34,7 +34,9 @@ + #include "gpa-config.h" + #include "gpa-node-private.h" + ++#ifndef errno + extern int errno; ++#endif + + enum {MODIFIED, CHILD_ADDED, CHILD_REMOVED, LAST_SIGNAL}; + static GObjectClass *parent_class; diff --git a/print/libgnomeprint/patches/patch-ab b/print/libgnomeprint/patches/patch-ab new file mode 100644 index 00000000000..2eff37c0540 --- /dev/null +++ b/print/libgnomeprint/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.5 2005/06/05 09:36:47 jmmv Exp $ + +--- libgnomeprint/gnome-print-config.c.orig 2005-06-03 00:36:18.000000000 +0200 ++++ libgnomeprint/gnome-print-config.c +@@ -39,7 +39,9 @@ + #include <libgnomeprint/gnome-print-config-private.h> + #include <libgnomeprint/gnome-print-job.h> + ++#ifndef errno + extern int errno; ++#endif + + typedef struct _GnomePrintConfigClass GnomePrintConfigClass; + |