svn commit: r304849 - head/benchmarks/wrk

Beat Gaetzi beat at FreeBSD.org
Tue Sep 25 17:52:50 UTC 2012


Author: beat
Date: Tue Sep 25 17:52:49 2012
New Revision: 304849
URL: http://svn.freebsd.org/changeset/ports/304849

Log:
  - Mark BROKEN on FreeBSD 7.x: does not link
    undefined reference to `sqrtl'
  
  Reported by:	pointyhat

Modified:
  head/benchmarks/wrk/Makefile

Modified: head/benchmarks/wrk/Makefile
==============================================================================
--- head/benchmarks/wrk/Makefile	Tue Sep 25 17:46:28 2012	(r304848)
+++ head/benchmarks/wrk/Makefile	Tue Sep 25 17:52:49 2012	(r304849)
@@ -24,10 +24,16 @@ CFLAGS+=	-std=c99 -D_DECLARE_C99_LDBL_MA
 
 PLIST_FILES=	bin/wrk
 
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 800000
+BROKEN=		does not link on FreeBSD 7.x
+.endif
+
 post-patch:
 	@${REINPLACE_CMD} '1d' ${WRKSRC}/Makefile
 
 do-install:
 	@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>



More information about the svn-ports-all mailing list