diff options
author | Andrej Zverev <az@FreeBSD.org> | 2005-12-21 05:36:33 +0000 |
---|---|---|
committer | Andrej Zverev <az@FreeBSD.org> | 2005-12-21 05:36:33 +0000 |
commit | 6d1cddcd9af6c2d2b257633bb0968bd1b15bbf9a (patch) | |
tree | 095643f6711c6bd76d2741eee542ac16301d17de /dns | |
parent | 83b7bbb12449c665f37cb4ad686ab6cc53491207 (diff) | |
download | ports-6d1cddcd9af6c2d2b257633bb0968bd1b15bbf9a.tar.gz ports-6d1cddcd9af6c2d2b257633bb0968bd1b15bbf9a.zip |
Notes
Diffstat (limited to 'dns')
-rw-r--r-- | dns/dnsproxy/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dns/dnsproxy/Makefile b/dns/dnsproxy/Makefile index f85669eb4cd3..691bcf91c10a 100644 --- a/dns/dnsproxy/Makefile +++ b/dns/dnsproxy/Makefile @@ -19,8 +19,15 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} MAN1= dnsproxy.1 PLIST_FILES= sbin/dnsproxy +.include <bsd.port.pre.mk> + +pre-configure: +.if ${OSVERSION} > 700007 + ${RM} ${WRKSRC}/libevent/compat/sys/queue.h +.endif + do-install: @${INSTALL_PROGRAM} ${WRKSRC}/dnsproxy ${PREFIX}/sbin @${INSTALL_MAN} ${WRKSRC}/dnsproxy.1 ${MAN1PREFIX}/man/man1 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |