Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Aug 2014 20:50:57 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r363936 - head/net/dante
Message-ID:  <53dea0b1.5fcd.30c47e51@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sun Aug  3 20:50:57 2014
New Revision: 363936
URL: http://svnweb.freebsd.org/changeset/ports/363936
QAT: https://qat.redports.org/buildarchive/r363936/

Log:
  Mark as forbidden the configure script is triggering a nasty bug in unix domain socket
  on FreeBSD 10+
  
  Reported by:	peter

Modified:
  head/net/dante/Makefile

Modified: head/net/dante/Makefile
==============================================================================
--- head/net/dante/Makefile	Sun Aug  3 20:26:38 2014	(r363935)
+++ head/net/dante/Makefile	Sun Aug  3 20:50:57 2014	(r363936)
@@ -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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53dea0b1.5fcd.30c47e51>