svn commit: r460116 - in head: benchmarks/stress-ng net/librdkafka

Luca Pizzamiglio pizzamig at FreeBSD.org
Sat Jan 27 12:44:01 UTC 2018


Author: pizzamig
Date: Sat Jan 27 12:44:00 2018
New Revision: 460116
URL: https://svnweb.freebsd.org/changeset/ports/460116

Log:
  Mark broken ports that fail to build on i386 with clang 6

Modified:
  head/benchmarks/stress-ng/Makefile
  head/net/librdkafka/Makefile

Modified: head/benchmarks/stress-ng/Makefile
==============================================================================
--- head/benchmarks/stress-ng/Makefile	Sat Jan 27 12:42:13 2018	(r460115)
+++ head/benchmarks/stress-ng/Makefile	Sat Jan 27 12:44:00 2018	(r460116)
@@ -18,6 +18,12 @@ ALL_TARGET=	# empty
 
 PLIST_FILES=	bin/stress-ng man/man1/stress-ng.1.gz
 
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056 && ${ARCH} == i386
+BROKEN=	undefined reference to '__atomic_fetch_add_8'
+.endif
+
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/stress-ng ${STAGEDIR}${PREFIX}/bin
 	${INSTALL_MAN} ${WRKSRC}/stress-ng.1 ${STAGEDIR}${MAN1PREFIX}/man/man1

Modified: head/net/librdkafka/Makefile
==============================================================================
--- head/net/librdkafka/Makefile	Sat Jan 27 12:42:13 2018	(r460115)
+++ head/net/librdkafka/Makefile	Sat Jan 27 12:44:00 2018	(r460116)
@@ -30,6 +30,12 @@ CONFIGURE_ARGS+=	--disable-sasl --enable-ssl
 
 USE_LDCONFIG=	yes
 
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056 && ${ARCH} == i386
+BROKEN=	undefined reference to '__atomic_fetch_add_8'
+.endif
+
 post-patch:
 	${REINPLACE_CMD} -e \
 	's|_ALIGN(|_RE_ALIGN(|g' ${WRKSRC}/src/rdkafka_buf.h \


More information about the svn-ports-all mailing list