diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2020-02-17 02:51:52 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2020-02-17 02:51:52 +0000 |
commit | 95bd274c1dbe7ba4824b3dad622dfa4a9c51021e (patch) | |
tree | d14266b224b662e0bbde294df9e46f66027ef09b | |
parent | multimedia/libopenshot: Update 0.2.3-595 -> 0.2.4-29 (diff) |
Allow to build with LLVM backend (off by default for now), the problem
had been addressed in r526266.
Notes
Notes:
svn path=/head/; revision=526336
-rw-r--r-- | graphics/seexpr/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/graphics/seexpr/Makefile b/graphics/seexpr/Makefile index d64b9e9c1342..9985da1fdf6d 100644 --- a/graphics/seexpr/Makefile +++ b/graphics/seexpr/Makefile @@ -25,12 +25,13 @@ USE_QT= buildtools_build qmake_build core gui opengl widgets 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 PYTHON_USE= PYQT=core_build,sip_build,widgets_build |