diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-30 19:21:41 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-30 19:21:41 +0000 |
commit | 0da23ac682dc2592e74a4ed6059cfada8d26f9c0 (patch) | |
tree | e962c878b200a22eb0ffdde2f605cca0a43646d0 /devel | |
parent | d6009e62dd084f77055ce2fcf4d48a2a852db66d (diff) | |
download | pkgsrc-0da23ac682dc2592e74a4ed6059cfada8d26f9c0.tar.gz |
Fix errno. Fix mismatch between header's prototype and implementation
in favour of the header.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/devhelp/distinfo | 4 | ||||
-rw-r--r-- | devel/devhelp/patches/patch-ab | 22 | ||||
-rw-r--r-- | devel/devhelp/patches/patch-ac | 13 |
3 files changed, 38 insertions, 1 deletions
diff --git a/devel/devhelp/distinfo b/devel/devhelp/distinfo index e783f6e9f66..9304337023c 100644 --- a/devel/devhelp/distinfo +++ b/devel/devhelp/distinfo @@ -1,6 +1,8 @@ -$NetBSD: distinfo,v 1.2 2005/02/23 22:24:12 agc Exp $ +$NetBSD: distinfo,v 1.3 2006/01/30 19:21:41 joerg Exp $ SHA1 (devhelp-0.7.tar.bz2) = a5f89a6fc2a255b62b8277af3df491129d1c028e RMD160 (devhelp-0.7.tar.bz2) = c939e1b2e6173dacae2b85eb6e383b06d7080fbc Size (devhelp-0.7.tar.bz2) = 371493 bytes SHA1 (patch-aa) = 84acab25f3263613a7de6a317b8bcbbe55f0f083 +SHA1 (patch-ab) = 48357bb66221377d4f174a1b7e3c2c6a7e61ac68 +SHA1 (patch-ac) = 45172016697a8148bfdf9eaf55cfffb4b6c03c14 diff --git a/devel/devhelp/patches/patch-ab b/devel/devhelp/patches/patch-ab new file mode 100644 index 00000000000..398ecb368c6 --- /dev/null +++ b/devel/devhelp/patches/patch-ab @@ -0,0 +1,22 @@ +$NetBSD: patch-ab,v 1.1 2006/01/30 19:21:41 joerg Exp $ + +--- libegg/toolbar/eggtoolbar.c.orig 2006-01-30 19:07:59.000000000 +0000 ++++ libegg/toolbar/eggtoolbar.c +@@ -2570,7 +2570,7 @@ egg_toolbar_insert_widget (EggToolbar *t + + GtkWidget* + egg_toolbar_append_element (EggToolbar *toolbar, +- GtkToolbarChildType type, ++ EggToolbarChildType type, + GtkWidget *widget, + const char *text, + const char *tooltip_text, +@@ -2587,7 +2587,7 @@ egg_toolbar_append_element (EggToolbar + + GtkWidget * + egg_toolbar_prepend_element (EggToolbar *toolbar, +- GtkToolbarChildType type, ++ EggToolbarChildType type, + GtkWidget *widget, + const char *text, + const char *tooltip_text, diff --git a/devel/devhelp/patches/patch-ac b/devel/devhelp/patches/patch-ac new file mode 100644 index 00000000000..d3ea335acb4 --- /dev/null +++ b/devel/devhelp/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2006/01/30 19:21:41 joerg Exp $ + +--- src/dh-parser.c.orig 2006-01-30 19:11:10.000000000 +0000 ++++ src/dh-parser.c +@@ -37,8 +37,6 @@ + #define DH_PARSER(o) ((DhParser *) o) + #define BYTES_PER_READ 4096 + +-extern int errno; +- + typedef struct { + GMarkupParser *m_parser; + GMarkupParseContext *context; |