diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-08-03 20:50:57 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-08-03 20:50:57 +0000 |
commit | cd59438c5fbfc3d865fd7e4e5a36f1f6754b5806 (patch) | |
tree | 6c31edb72d02dd0a88ffc1389dfbb9a1fd2bc0d7 /net | |
parent | 541582175ad725b23f5227741f513517b0ffd3e0 (diff) | |
download | ports-cd59438c5fbfc3d865fd7e4e5a36f1f6754b5806.tar.gz ports-cd59438c5fbfc3d865fd7e4e5a36f1f6754b5806.zip |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/dante/Makefile | 8 |
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> |