diff options
author | gdt <gdt@pkgsrc.org> | 2014-03-25 12:54:22 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2014-03-25 12:54:22 +0000 |
commit | 9743ddf565bba48d8a34ace1932375a593d074f3 (patch) | |
tree | c1e9401f872c59fa59b820731b7157d5c11843df | |
parent | 9b47877f42d406e3b7985791af3e6c6de2b844fb (diff) | |
download | pkgsrc-9743ddf565bba48d8a34ace1932375a593d074f3.tar.gz |
Add another missing include of stdint.h, to resolve build on Linux.
From Iain Morgan (again; this was in the previous set and I missed it
while pruning changes that just regenerated distfiles without real
changes).
-rw-r--r-- | editors/nedit/Makefile | 4 | ||||
-rw-r--r-- | editors/nedit/distinfo | 4 | ||||
-rw-r--r-- | editors/nedit/patches/patch-source_highlight.c | 14 |
3 files changed, 15 insertions, 7 deletions
diff --git a/editors/nedit/Makefile b/editors/nedit/Makefile index fd1de512b65..18366f51756 100644 --- a/editors/nedit/Makefile +++ b/editors/nedit/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.55 2014/03/22 17:26:12 gdt Exp $ +# $NetBSD: Makefile,v 1.56 2014/03/25 12:54:22 gdt Exp $ DISTNAME= nedit-${VERS}-src PKGNAME= nedit-${VERS} -PKGREVISION= 8 +PKGREVISION= 9 CATEGORIES= editors # @pkglint: MASTER_SITE_NEDIT is defined below MASTER_SITES= ${MASTER_SITE_NEDIT:=v${VERS:S/./_/g}/} \ diff --git a/editors/nedit/distinfo b/editors/nedit/distinfo index 701aa35d1ba..abd47db28d1 100644 --- a/editors/nedit/distinfo +++ b/editors/nedit/distinfo @@ -1,11 +1,11 @@ -$NetBSD: distinfo,v 1.17 2014/03/22 17:26:12 gdt Exp $ +$NetBSD: distinfo,v 1.18 2014/03/25 12:54:22 gdt Exp $ SHA1 (nedit-5.5-src.tar.bz2) = 7d3c87a793a5047cf857af1ac82e39f3b33e8a87 RMD160 (nedit-5.5-src.tar.bz2) = 93fce64bdc5d8a9eff86ab76cec67d44d676d0eb Size (nedit-5.5-src.tar.bz2) = 1124825 bytes SHA1 (patch-Xlt_SlideC.c) = aafca789053536a0d3ca0bc98ae301c60697e4c2 SHA1 (patch-aa) = 29cf7e55b23e437b0203e0dde09cc053d65f245c -SHA1 (patch-source_highlight.c) = f6c8de27402e3e6d4fd73cb11e541c5c053835d9 +SHA1 (patch-source_highlight.c) = cfb36657e654747a16f7cf9ed6394e047493e1f5 SHA1 (patch-source_interpret.c) = c2fc78178c814fff1b572f8674f0fec3803926e5 SHA1 (patch-source_macro.c) = e0a1562687c3f989d96eb2fc62a93452273d1ea7 SHA1 (patch-source_menu.c) = 529be222b97904b82721dc79ae8fa587378ccd48 diff --git a/editors/nedit/patches/patch-source_highlight.c b/editors/nedit/patches/patch-source_highlight.c index a1b2416f7bb..6e0e39207ef 100644 --- a/editors/nedit/patches/patch-source_highlight.c +++ b/editors/nedit/patches/patch-source_highlight.c @@ -1,10 +1,18 @@ -$NetBSD: patch-source_highlight.c,v 1.1 2013/04/28 20:35:22 dholland Exp $ +$NetBSD: patch-source_highlight.c,v 1.2 2014/03/25 12:54:22 gdt Exp $ Silence gcc warnings about unsafe pointer casts. ---- source/highlight.c~ 2004-08-01 10:06:10.000000000 +0000 +--- source/highlight.c.orig 2004-08-01 10:06:10.000000000 +0000 +++ source/highlight.c -@@ -510,7 +510,7 @@ void* GetHighlightInfo(WindowInfo *windo +@@ -50,6 +50,7 @@ static const char CVSID[] = "$Id: highli + #include <math.h> + #include <stdlib.h> + #include <string.h> ++#include <stdint.h> + #ifdef VMS + #include "../util/VMSparam.h" + #else +@@ -510,7 +511,7 @@ void* GetHighlightInfo(WindowInfo *windo if (!pattern) { return NULL; } |