svn commit: r513333 - head/benchmarks/fio

Kirill Ponomarev krion at FreeBSD.org
Mon Sep 30 09:07:20 UTC 2019


Author: krion
Date: Mon Sep 30 09:07:19 2019
New Revision: 513333
URL: https://svnweb.freebsd.org/changeset/ports/513333

Log:
  Disable native CPU support and hence some advanced instructions to
  prevent breakage execution with some older CPUs
  
  Reported by:	avg

Modified:
  head/benchmarks/fio/Makefile

Modified: head/benchmarks/fio/Makefile
==============================================================================
--- head/benchmarks/fio/Makefile	Mon Sep 30 08:29:57 2019	(r513332)
+++ head/benchmarks/fio/Makefile	Mon Sep 30 09:07:19 2019	(r513333)
@@ -3,6 +3,7 @@
 
 PORTNAME=	fio
 PORTVERSION=	3.16
+PORTREVISION=	1
 CATEGORIES=	benchmarks
 MASTER_SITES=	http://brick.kernel.dk/snaps/
 
@@ -12,7 +13,10 @@ COMMENT=	Flexible IO tester
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+HAS_CONFIGURE=	yes
 USES=		gmake tar:bzip2
+
+CONFIGURE_ARGS+=	--disable-native
 
 OPTIONS_DEFINE=	GNUPLOT EXAMPLES
 GNUPLOT_DESC=	Support for plotting graphs


More information about the svn-ports-all mailing list