pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/libdfui Set NOLINT on NetBSD, fixes the bulk bui...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/58ae1521c048
branches:  trunk
changeset: 489355:58ae1521c048
user:      xtraeme <xtraeme%pkgsrc.org@localhost>
date:      Sun Feb 20 00:33:18 2005 +0000

description:
Set NOLINT on NetBSD, fixes the bulk build, add required casts to make
this build; bump PKGREVISION.

diffstat:

 devel/libdfui/Makefile         |   3 ++-
 devel/libdfui/distinfo         |   5 ++++-
 devel/libdfui/patches/patch-aa |  13 +++++++++++++
 devel/libdfui/patches/patch-ab |  22 ++++++++++++++++++++++
 devel/libdfui/patches/patch-ac |  13 +++++++++++++
 5 files changed, 54 insertions(+), 2 deletions(-)

diffs (85 lines):

diff -r 86be8d1d1680 -r 58ae1521c048 devel/libdfui/Makefile
--- a/devel/libdfui/Makefile    Sun Feb 20 00:23:03 2005 +0000
+++ b/devel/libdfui/Makefile    Sun Feb 20 00:33:18 2005 +0000
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.1.1.1 2005/02/09 05:41:35 xtraeme Exp $
+# $NetBSD: Makefile,v 1.2 2005/02/20 00:33:18 xtraeme Exp $
 #
 
 DISTNAME=      libdfui-3.0
+PKGREVISION=   1
 CATEGORIES=    devel
 MASTER_SITES=  http://www.bsdinstaller.org/distfiles/
 
diff -r 86be8d1d1680 -r 58ae1521c048 devel/libdfui/distinfo
--- a/devel/libdfui/distinfo    Sun Feb 20 00:23:03 2005 +0000
+++ b/devel/libdfui/distinfo    Sun Feb 20 00:33:18 2005 +0000
@@ -1,4 +1,7 @@
-$NetBSD: distinfo,v 1.1.1.1 2005/02/09 05:41:36 xtraeme Exp $
+$NetBSD: distinfo,v 1.2 2005/02/20 00:33:18 xtraeme Exp $
 
 SHA1 (libdfui-3.0.tar.gz) = 7a30125df8d9c29a0b4db69add3953011f34076e
 Size (libdfui-3.0.tar.gz) = 29346 bytes
+SHA1 (patch-aa) = 0e7f7f5062ff42da25a4058d1e3e1912d0fa38bb
+SHA1 (patch-ab) = fc93cf0285348b16d4169c57edc512fc87635682
+SHA1 (patch-ac) = 2f14683e034a22fd752f58468143f68d5f3ed44e
diff -r 86be8d1d1680 -r 58ae1521c048 devel/libdfui/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/libdfui/patches/patch-aa    Sun Feb 20 00:33:18 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1 2005/02/20 00:33:18 xtraeme Exp $
+
+--- Makefile.orig      2005-02-20 01:23:24.000000000 +0100
++++ Makefile   2005-02-20 01:23:35.000000000 +0100
+@@ -20,7 +20,7 @@
+ .endif
+ 
+ .if ${OSTYPE} == "NetBSD"
+-NOGCCERROR=D
++NOLINT=yes
+ CPPFLAGS=${CFLAGS}
+ SHLIBDIR=/usr/local/lib
+ USE_SHLIBDIR=yes
diff -r 86be8d1d1680 -r 58ae1521c048 devel/libdfui/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/libdfui/patches/patch-ab    Sun Feb 20 00:33:18 2005 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-ab,v 1.1 2005/02/20 00:33:18 xtraeme Exp $
+
+--- decode.c.orig      2005-02-20 01:27:53.000000000 +0100
++++ decode.c   2005-02-20 01:28:18.000000000 +0100
+@@ -61,7 +61,7 @@
+       int i = 0;
+       int len = 0;
+ 
+-      while (isdigit(aura_buffer_peek_char(e)) && !aura_buffer_eof(e)) {
++      while (isdigit((int)aura_buffer_peek_char(e)) && !aura_buffer_eof(e)) {
+               len = len * 10 + aura_buffer_scan_char(e) - '0';
+       }
+ 
+@@ -83,7 +83,7 @@
+ {
+       int x = 0;
+ 
+-      while (isdigit(aura_buffer_peek_char(e)) && !aura_buffer_eof(e)) {
++      while (isdigit((int)aura_buffer_peek_char(e)) && !aura_buffer_eof(e)) {
+               x = x * 10 + aura_buffer_scan_char(e) - '0';
+       }
+       if (aura_buffer_expect(e, " ")) {
diff -r 86be8d1d1680 -r 58ae1521c048 devel/libdfui/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/libdfui/patches/patch-ac    Sun Feb 20 00:33:18 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.1 2005/02/20 00:33:18 xtraeme Exp $
+
+--- form.c.orig        2005-02-20 01:29:05.000000000 +0100
++++ form.c     2005-02-20 01:31:00.000000000 +0100
+@@ -791,7 +791,7 @@
+       struct dfui_action *a;
+ 
+       if (f == NULL)
+-              return(NULL);
++              return((int)NULL);
+ 
+       a = f->action_head;
+       while (a != NULL) {



Home | Main Index | Thread Index | Old Index