diff options
author | augustss <augustss@pkgsrc.org> | 2002-04-02 20:27:40 +0000 |
---|---|---|
committer | augustss <augustss@pkgsrc.org> | 2002-04-02 20:27:40 +0000 |
commit | 8580ba364a57e03b20a8bb1123e99d6a3885eda7 (patch) | |
tree | a08b3b76854655d04bc2cffb80d8d2c8ba52874a /comms/birda | |
parent | aba743c9f9adb1aee68c54fc0acf0533856c8880 (diff) | |
download | pkgsrc-8580ba364a57e03b20a8bb1123e99d6a3885eda7.tar.gz |
Integrate patch-aa: LP64 fixes.
Diffstat (limited to 'comms/birda')
-rw-r--r-- | comms/birda/Makefile | 4 | ||||
-rw-r--r-- | comms/birda/distinfo | 7 | ||||
-rw-r--r-- | comms/birda/patches/patch-aa | 30 |
3 files changed, 5 insertions, 36 deletions
diff --git a/comms/birda/Makefile b/comms/birda/Makefile index f8034a0b364..82927c0d2c8 100644 --- a/comms/birda/Makefile +++ b/comms/birda/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2002/01/13 01:02:12 augustss Exp $ +# $NetBSD: Makefile,v 1.11 2002/04/02 20:27:40 augustss Exp $ # -DISTNAME= birda-0.9 +DISTNAME= birda-1.00 CATEGORIES= comms MASTER_SITES= ftp://ftp.augustsson.net/pub/netbsd/ diff --git a/comms/birda/distinfo b/comms/birda/distinfo index b34aba81c55..8c8184f0bdd 100644 --- a/comms/birda/distinfo +++ b/comms/birda/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.11 2002/04/01 04:22:58 dmcmahill Exp $ +$NetBSD: distinfo,v 1.12 2002/04/02 20:27:40 augustss Exp $ -SHA1 (birda-0.9.tar.gz) = 7a45faad895ffea771d02b4e43b0f6af18a77653 -Size (birda-0.9.tar.gz) = 56070 bytes -SHA1 (patch-aa) = 2b45fbcb5c148fe6cfbbcaae4eebbb42c9957da9 +SHA1 (birda-1.00.tar.gz) = 5ee1811b2f8cc9963c95bac223580c8ebff059b5 +Size (birda-1.00.tar.gz) = 56074 bytes diff --git a/comms/birda/patches/patch-aa b/comms/birda/patches/patch-aa deleted file mode 100644 index 2d29a53a366..00000000000 --- a/comms/birda/patches/patch-aa +++ /dev/null @@ -1,30 +0,0 @@ -$NetBSD: patch-aa,v 1.2 2002/04/01 04:22:59 dmcmahill Exp $ - ---- src/unix.c.orig Mon Dec 17 11:09:33 2001 -+++ src/unix.c -@@ -30,6 +30,7 @@ - - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - #include <errno.h> - #include <stdarg.h> - #include <syslog.h> -@@ -462,7 +463,7 @@ - - log("Memory:\n"); - for(n=0,b=0,m=allocs;m;m=m->next) { -- log(" addr=%8x size=%5d id=%s\n",(unsigned)m->ptr,m->size,m->id); -+ log(" addr=%p size=%5d id=%s\n",m->ptr,m->size,m->id); - n++; - b+=m->size; - } -@@ -586,7 +587,7 @@ - Timer* ti=timers; - timers=ti->next; - if(evtDebug&EVT_DEBUG_TIMERS) -- log("timer called %x %x\n",(unsigned)ti->func,(unsigned)ti->handle); -+ log("timer called %p %p\n",ti->func,ti->handle); - ti->func(ti->handle); - if(evtDebug&EVT_DEBUG_TIMERS) log("timer completed\n"); - free(ti); |