aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2014-08-04 04:50:57 +0800
committerbapt <bapt@FreeBSD.org>2014-08-04 04:50:57 +0800
commitb147186631121c3b6df6cb6fb2a23d9b171319bc (patch)
tree6c31edb72d02dd0a88ffc1389dfbb9a1fd2bc0d7
parentbd23fdff970dd62aa7a07a3b771964fd97c0a857 (diff)
downloadfreebsd-ports-gnome-b147186631121c3b6df6cb6fb2a23d9b171319bc.tar.gz
freebsd-ports-gnome-b147186631121c3b6df6cb6fb2a23d9b171319bc.tar.zst
freebsd-ports-gnome-b147186631121c3b6df6cb6fb2a23d9b171319bc.zip
Mark as forbidden the configure script is triggering a nasty bug in unix domain socket
on FreeBSD 10+ Reported by: peter
-rw-r--r--net/dante/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/net/dante/Makefile b/net/dante/Makefile
index 143d7907007a..14c663b6d25f 100644
--- a/net/dante/Makefile
+++ b/net/dante/Makefile
@@ -30,13 +30,15 @@ USE_RC_SUBR= sockd
OPTIONS_DEFINE= DOCS EXAMPLES
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
.if ${OSVERSION} >= 1000044
CONFIGURE_ARGS+= --with-libc=libc.so.7
.endif
-.include <bsd.port.options.mk>
+.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1000000
+FORBIDDEN= Building on 10+ triggers a nasty bug with unix domain sockets
+.endif
post-install:
${INSTALL_DATA} ${WRKSRC}/example/socks.conf ${STAGEDIR}${PREFIX}/etc/socks.conf.sample
@@ -54,4 +56,4 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/UPGRADE ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/contrib/sockd-stat.awk ${STAGEDIR}${DOCSDIR}/contrib/sockd-stat.awk
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>