diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2006-04-12 21:28:00 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2006-04-12 21:28:00 +0800 |
commit | aed2c8ec5482a7a25d14606a9be0d28534e395aa (patch) | |
tree | 780d63f982008f998a9f190f6d111d8344807293 /dns/totd | |
parent | 5afd946538a5b18b4bc712da8faceb3d615720ff (diff) | |
download | freebsd-ports-gnome-aed2c8ec5482a7a25d14606a9be0d28534e395aa.tar.gz freebsd-ports-gnome-aed2c8ec5482a7a25d14606a9be0d28534e395aa.tar.zst freebsd-ports-gnome-aed2c8ec5482a7a25d14606a9be0d28534e395aa.zip |
- Fix build on -CURRENT. GCC raises a warning at totd.c:507; tv_sec is a
time_t, not a long
- Respect CC (self)
PR: 95148
Submitted by: Ed Schouten <ed@fxq.nl>
Diffstat (limited to 'dns/totd')
-rw-r--r-- | dns/totd/Makefile | 13 | ||||
-rw-r--r-- | dns/totd/files/patch-totd.c | 11 |
2 files changed, 19 insertions, 5 deletions
diff --git a/dns/totd/Makefile b/dns/totd/Makefile index 754a8b3fcdc3..a0f5b8e83b9a 100644 --- a/dns/totd/Makefile +++ b/dns/totd/Makefile @@ -6,17 +6,17 @@ PORTNAME= totd PORTVERSION= 1.5.1 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= ftp://ftp.pasta.cs.uit.no/pub/Vermicelli/ MAINTAINER= ports@FreeBSD.org COMMENT= DNS proxy that supports IPv6 <==> IPv4 record translation -MAN8= totd.8 +USE_RC_SUBR= yes +GNU_CONFIGURE= yes -USE_RC_SUBR= YES -GNU_CONFIGURE= YES -USE_REINPLACE= YES +MAN8= totd.8 RC_SCRIPTS_SUB= PREFIX=${PREFIX} RC_SUBR=${RC_SUBR} @@ -25,8 +25,11 @@ RC_SCRIPTS_SUB= PREFIX=${PREFIX} RC_SUBR=${RC_SUBR} .if ${OSVERSION} >= 500000 EXTRA_PATCHES= ${FILESDIR}/extra-patch-ne_mesg.c \ ${FILESDIR}/extra-patch-tcp_response.c -.else +.endif + post-patch: + @${REINPLACE_CMD} -e '/^CC/d' ${WRKSRC}/${MAKEFILE}.in +.if ${OSVERSION} < 500000 @${REINPLACE_CMD} -e 's/%zd/%d/g' ${WRKSRC}/*.c .endif diff --git a/dns/totd/files/patch-totd.c b/dns/totd/files/patch-totd.c new file mode 100644 index 000000000000..0c537b6b2551 --- /dev/null +++ b/dns/totd/files/patch-totd.c @@ -0,0 +1,11 @@ +--- totd.c.orig Wed Feb 2 12:10:31 2005 ++++ totd.c Wed Apr 12 14:56:16 2006 +@@ -504,7 +504,7 @@ + tvp = &tv_out; + if (T.debug > 2) + syslog (LOG_DEBUG, "next timeout after %ld s.", +- tv_out.tv_sec); ++ (long)tv_out.tv_sec); + } + } + |