svn commit: r463006 - head/math/octave

Antoine Brodin antoine at FreeBSD.org
Mon Feb 26 09:14:11 UTC 2018


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
 


More information about the svn-ports-head mailing list