From owner-svn-ports-all@freebsd.org Tue Mar 29 14:14:55 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE7FDAE072D; Tue, 29 Mar 2016 14:14:55 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 65F1A1882; Tue, 29 Mar 2016 14:14:55 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2TEEsEJ032407; Tue, 29 Mar 2016 14:14:54 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2TEEsg8032405; Tue, 29 Mar 2016 14:14:54 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201603291414.u2TEEsg8032405@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Tue, 29 Mar 2016 14:14:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412113 - in head: graphics/libGL lang/clover X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Mar 2016 14:14:55 -0000 Author: kwm Date: Tue Mar 29 14:14:54 2016 New Revision: 412113 URL: https://svnweb.freebsd.org/changeset/ports/412113 Log: 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@ Modified: head/graphics/libGL/Makefile.common head/lang/clover/Makefile Modified: head/graphics/libGL/Makefile.common ============================================================================== --- head/graphics/libGL/Makefile.common Tue Mar 29 14:09:47 2016 (r412112) +++ head/graphics/libGL/Makefile.common Tue Mar 29 14:14:54 2016 (r412113) @@ -87,8 +87,11 @@ CONFIGURE_ARGS+= --enable-gles2 # Clover (OpenCL). .if ${OPSYS} == DragonFly || \ - (${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 && \ - (${ARCH} == i386 || ${ARCH} == amd64)) + (${OPSYS} == FreeBSD && \ + (${OSVERSION} >= 1001000 && ${ARCH} == amd64 || \ + ${OSVERSION} >= 1002000 && ${ARCH} == i386)) +# Disabled on 10.1-R i386 because of compile issues with libclc. + BUILD_DEPENDS+= libclc>=0.0.r222830:${PORTSDIR}/devel/libclc # We need the clang port too even if it is not used to compile because Modified: head/lang/clover/Makefile ============================================================================== --- head/lang/clover/Makefile Tue Mar 29 14:09:47 2016 (r412112) +++ head/lang/clover/Makefile Tue Mar 29 14:14:54 2016 (r412113) @@ -25,9 +25,12 @@ ONLY_FOR_ARCHS_REASON= Clover needs a gr #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"