svn commit: r526336 - head/graphics/seexpr

Alexey Dokuchaev danfe at FreeBSD.org
Mon Feb 17 02:51:52 UTC 2020


Author: danfe
Date: Mon Feb 17 02:51:52 2020
New Revision: 526336
URL: https://svnweb.freebsd.org/changeset/ports/526336

Log:
  Allow to build with LLVM backend (off by default for now), the problem
  had been addressed in r526266.

Modified:
  head/graphics/seexpr/Makefile

Modified: head/graphics/seexpr/Makefile
==============================================================================
--- head/graphics/seexpr/Makefile	Mon Feb 17 02:32:04 2020	(r526335)
+++ head/graphics/seexpr/Makefile	Mon Feb 17 02:51:52 2020	(r526336)
@@ -25,11 +25,12 @@ USE_QT=		buildtools_build qmake_build core gui opengl 
 
 MAKE_JOBS_UNSAFE=	yes	# https://github.com/wdas/seexpr/issues/40
 
-# XXX: fix the build errors and convert to OPTIONs
-CMAKE_ARGS=	-DENABLE_LLVM_BACKEND:BOOL=FALSE
-
-OPTIONS_DEFINE=	PYTHON
+OPTIONS_DEFINE=	LLVM PYTHON
 OPTIONS_SUB=	yes
+
+LLVM_DESC=		Build with LLVM ${LLVM_DEFAULT:C/.$$//} backend
+LLVM_LIB_DEPENDS=	libLLVM.so:devel/llvm${LLVM_DEFAULT}
+LLVM_CMAKE_OFF=		-DENABLE_LLVM_BACKEND:BOOL=FALSE
 
 PYTHON_LIB_DEPENDS=	${PY_BOOST}
 PYTHON_USES=		pyqt:5 python


More information about the svn-ports-all mailing list