diff options
author | joerg <joerg@pkgsrc.org> | 2006-03-23 17:09:40 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-03-23 17:09:40 +0000 |
commit | 3d0920dd137c3d14d1b8fc672ccd5f68675d31cd (patch) | |
tree | cdfc97ae04b2e033ba8eff4e11bc270b0cf54a39 /net | |
parent | 1925f4fe892115d5193c080ea949d628fc70dd6a (diff) | |
download | pkgsrc-3d0920dd137c3d14d1b8fc672ccd5f68675d31cd.tar.gz |
ap_type is a short, not a char. Fix it and bump revision.
Diffstat (limited to 'net')
-rw-r--r-- | net/wap-utils/Makefile | 4 | ||||
-rw-r--r-- | net/wap-utils/distinfo | 3 | ||||
-rw-r--r-- | net/wap-utils/patches/patch-aa | 14 |
3 files changed, 18 insertions, 3 deletions
diff --git a/net/wap-utils/Makefile b/net/wap-utils/Makefile index 503e96f28cf..968a7cc47e1 100644 --- a/net/wap-utils/Makefile +++ b/net/wap-utils/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.16 2006/02/05 23:10:32 joerg Exp $ +# $NetBSD: Makefile,v 1.17 2006/03/23 17:09:40 joerg Exp $ # DISTNAME= ap-utils-1.3.2 PKGNAME= w${DISTNAME} -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ap-utils/} EXTRACT_SUFX= .tar.bz2 diff --git a/net/wap-utils/distinfo b/net/wap-utils/distinfo index 15fbfea275d..ad20425632c 100644 --- a/net/wap-utils/distinfo +++ b/net/wap-utils/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/02/24 12:14:06 agc Exp $ +$NetBSD: distinfo,v 1.4 2006/03/23 17:09:40 joerg Exp $ SHA1 (ap-utils-1.3.2.tar.bz2) = 1be90d9e8df214ef422ffd581c2d29c2b961ea8c RMD160 (ap-utils-1.3.2.tar.bz2) = ce58feac694a05cb97bd0be9dc5fac99b9432919 Size (ap-utils-1.3.2.tar.bz2) = 280243 bytes +SHA1 (patch-aa) = 06ca4b5571d7f1cbf21b73288bc3be02d71b4182 diff --git a/net/wap-utils/patches/patch-aa b/net/wap-utils/patches/patch-aa new file mode 100644 index 00000000000..87d670a49ba --- /dev/null +++ b/net/wap-utils/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 2006/03/23 17:09:40 joerg Exp $ + +--- src/file.c.orig 2006-03-23 16:56:33.000000000 +0000 ++++ src/file.c +@@ -115,7 +115,8 @@ struct APList *parse_db_str(char *str) + + int get_opts() + { +- extern char ap_type, *community; ++ extern short ap_type; ++ extern char *community; + extern struct in_addr ap_ip; + extern int sockfd; + |