svn commit: r502970 - head/math/cminpack

Fernando Apesteguía fernape at FreeBSD.org
Wed May 29 16:51:48 UTC 2019


Author: fernape
Date: Wed May 29 16:51:46 2019
New Revision: 502970
URL: https://svnweb.freebsd.org/changeset/ports/502970

Log:
  math/cminpack: Fix build in 'dirty' environments
  
  This is a followup for r502756. In environments with math/openbas installed,
  cmake assumes the presence of cblas.h which is actually not present.
  
  poudriere doesn't catch this error and hence there were no pkg fallouts.
  
  Submitted by:	tobik@
  Reported by:	yuri@

Modified:
  head/math/cminpack/Makefile

Modified: head/math/cminpack/Makefile
==============================================================================
--- head/math/cminpack/Makefile	Wed May 29 15:45:06 2019	(r502969)
+++ head/math/cminpack/Makefile	Wed May 29 16:51:46 2019	(r502970)
@@ -15,6 +15,8 @@ USES=		cmake localbase
 USE_GITHUB=	yes
 GH_ACCOUNT=	devernay
 
+CMAKE_OFF=	USE_BLAS
+
 OPTIONS_DEFINE=	EXAMPLES
 
 post-install-EXAMPLES-on:


More information about the svn-ports-all mailing list