aboutsummaryrefslogtreecommitdiffstats
path: root/lang/clover
diff options
context:
space:
mode:
authorkwm <kwm@FreeBSD.org>2016-03-29 22:14:54 +0800
committerkwm <kwm@FreeBSD.org>2016-03-29 22:14:54 +0800
commite1a8ca46cedbe7986fb570a518a886a171fd57ee (patch)
tree0a5219cfc6cc1e500253a062acd954f7baa4ffa9 /lang/clover
parent3407615705714982356aaefaea12bd50f4baf98e (diff)
downloadfreebsd-ports-gnome-e1a8ca46cedbe7986fb570a518a886a171fd57ee.tar.gz
freebsd-ports-gnome-e1a8ca46cedbe7986fb570a518a886a171fd57ee.tar.zst
freebsd-ports-gnome-e1a8ca46cedbe7986fb570a518a886a171fd57ee.zip
Exclude libclc (and thus OpenCL) on 10.1 i386.
There is a wierd issue with base clang and llvm37 which stops libclc to build on 10.1 i386. So disable it so we don't block 1500+ ports. Submitted by: pkg-fallout via antoine@
Diffstat (limited to 'lang/clover')
-rw-r--r--lang/clover/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/clover/Makefile b/lang/clover/Makefile
index f3d87d599a9c..c3ac882813f0 100644
--- a/lang/clover/Makefile
+++ b/lang/clover/Makefile
@@ -25,9 +25,12 @@ ONLY_FOR_ARCHS_REASON= Clover needs a graphics driver supported by the Radeon KM
#MESA_BUILD_WRKSRC= src/util src/glsl src/mesa src/gallium
MESA_INSTALL_WRKSRC= src/gallium/targets/opencl src/gallium/targets/pipe-loader
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001000
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001000 && ${ARCH} == amd64
IGNORE= Clover is only supported on FreeBSD 10.1 and newer
.endif
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1002000 && ${ARCH} == i386
+IGNORE= Clover is only supported on FreeBSD 10.2 and newer
+.endif
.include "${.CURDIR}/../../graphics/libGL/Makefile.targets"