Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Feb 2018 09:14:10 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r463006 - head/math/octave
Message-ID:  <201802260914.w1Q9EAmk002917@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Mon Feb 26 09:14:10 2018
New Revision: 463006
URL: https://svnweb.freebsd.org/changeset/ports/463006

Log:
  Explicitely disable openmp, for some reasons configure enables it on
  10.x amd64 (not other archs) and this causes fallout in some octave-forge
  ports
  
  With hat:	portmgr

Modified:
  head/math/octave/Makefile

Modified: head/math/octave/Makefile
==============================================================================
--- head/math/octave/Makefile	Mon Feb 26 09:04:07 2018	(r463005)
+++ head/math/octave/Makefile	Mon Feb 26 09:14:10 2018	(r463006)
@@ -3,6 +3,7 @@
 
 PORTNAME=	octave
 PORTVERSION=	4.2.1
+PORTREVISION=	1
 CATEGORIES=	math java
 MASTER_SITES=	GNU
 
@@ -61,7 +62,8 @@ CONFIGURE_ARGS=	--host=${GNU_HOST} \
 		--with-blas="-L${LOCALBASE}/lib ${BLASLIB}" \
 		--with-lapack="${LAPACKLIB}" \
 		--enable-shared \
-		--disable-jit
+		--disable-jit \
+		--disable-openmp
 
 OPTIONS_DEFINE=	DOCS
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802260914.w1Q9EAmk002917>