- Update to 1.2

PR:		ports/73296
Submitted by:	Andrey Slusar <anray@inet.ua>
Approved by:	maintainer timeout (3 weeks)
This commit is contained in:
Sergei Kolobov 2004-11-23 16:19:36 +00:00
parent cafa332070
commit 2f1fa9f87f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=122232
4 changed files with 29 additions and 4 deletions

View File

@ -6,9 +6,9 @@
#
PORTNAME= pdnsd
PORTVERSION= 1.1.11a
PORTVERSION= 1.2
CATEGORIES= dns
MASTER_SITES= http://www.phys.uu.nl/~rombouts/pdnsd/
MASTER_SITES= http://www.phys.uu.nl/~rombouts/pdnsd/releases/
DISTNAME= ${PORTNAME}-${PORTVERSION}-par
MAINTAINER= ports@oven.org
@ -20,6 +20,7 @@ CONFIGURE_ARGS= --with-cachedir=${PDNSDB} \
--enable-ipv6
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
MAN5= pdnsd.conf.5
MAN8= pdnsd.8 pdnsd-ctl.8
PDNSDB= /var/db/pdnsd

View File

@ -1,2 +1,2 @@
MD5 (pdnsd-1.1.11a-par.tar.gz) = 2caf6335b92e0955f07af9bd9d429443
SIZE (pdnsd-1.1.11a-par.tar.gz) = 305135
MD5 (pdnsd-1.2-par.tar.gz) = 0ddcc8c1a3e6301df1a18ad320260d67
SIZE (pdnsd-1.2-par.tar.gz) = 345082

View File

@ -0,0 +1,12 @@
--- src/conff.h.orig Fri Oct 29 01:11:36 2004
+++ src/conff.h Fri Oct 29 01:12:36 2004
@@ -32,6 +32,9 @@
#include <config.h>
#include <stdio.h>
#include <pthread.h>
+#if TARGET==TARGET_BSD
+#include <sys/socket.h>
+#endif
#include <net/if.h>
#include "ipvers.h"
#include "list.h"

View File

@ -0,0 +1,12 @@
--- src/dns.h.orig Fri Oct 29 01:03:35 2004
+++ src/dns.h Fri Oct 29 01:04:55 2004
@@ -27,6 +27,9 @@
#include <config.h>
#include <arpa/inet.h>
+#if TARGET==TARGET_BSD
+#include <sys/socket.h>
+#endif
#include <net/if.h>
#include <sys/types.h>
#include <inttypes.h>