Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Mar 2018 01:03:29 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r465552 - head/math/ceres-solver
Message-ID:  <201803260103.w2Q13ToP027760@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Mon Mar 26 01:03:29 2018
New Revision: 465552
URL: https://svnweb.freebsd.org/changeset/ports/465552

Log:
  math/ceres-solver: request BLAS flavor via environment
  
  https://github.com/ceres-solver/ceres-solver/issues/355

Modified:
  head/math/ceres-solver/Makefile   (contents, props changed)

Modified: head/math/ceres-solver/Makefile
==============================================================================
--- head/math/ceres-solver/Makefile	Mon Mar 26 00:03:43 2018	(r465551)
+++ head/math/ceres-solver/Makefile	Mon Mar 26 01:03:29 2018	(r465552)
@@ -70,17 +70,17 @@ LAPACK_CMAKE_ON=	-DBLAS_LIBRARIES:FILEPATH="${BLASLIB}
 			-DLAPACK_LIBRARIES:FILEPATH="${LAPACKLIB}"
 LAPACK_CMAKE_BOOL=	LAPACK
 ATLAS_USES=		blaslapack:atlas
-ATLAS_CMAKE_ON=		-DBLA_VENDOR:STRING="ATLAS"
+ATLAS_MAKE_ENV=		BLA_VENDOR=ATLAS
 ATLAS_IMPLIES=		LAPACK
 GOTOBLAS_DESC=		Goto blas implementation
 GOTOBLAS_USES=		blaslapack:gotoblas
-GOTOBLAS_CMAKE_ON=	-DBLA_VENDOR:STRING="Goto"
+GOTOBLAS_MAKE_ENV=	BLA_VENDOR=Goto
 GOTOBLAS_IMPLIES=	LAPACK
 NETLIB_USES=		blaslapack:netlib
-NETLIB_CMAKE_ON=	-DBLA_VENDOR:STRING="Generic"
+NETLIB_MAKE_ENV=	BLA_VENDOR=Generic
 NETLIB_IMPLIES=		LAPACK
 OPENBLAS_USES=		blaslapack:openblas
-OPENBLAS_CMAKE_ON=	-DBLA_VENDOR:STRING="OpenBLAS"
+OPENBLAS_MAKE_ENV=	BLA_VENDOR=OpenBLAS
 OPENBLAS_IMPLIES=	LAPACK
 
 SPARSE_DESC=		Sparse linear algebra library



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