From owner-svn-ports-head@freebsd.org Wed Dec 6 17:30:07 2017 Return-Path: Delivered-To: svn-ports-head@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 ED2A7E860E4; Wed, 6 Dec 2017 17:30:07 +0000 (UTC) (envelope-from pi@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 BA3317A9B1; Wed, 6 Dec 2017 17:30:07 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB6HU6pf021798; Wed, 6 Dec 2017 17:30:06 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB6HU6hn021797; Wed, 6 Dec 2017 17:30:06 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201712061730.vB6HU6hn021797@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 6 Dec 2017 17:30:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455665 - head/audio/zynaddsubfx X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/audio/zynaddsubfx X-SVN-Commit-Revision: 455665 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2017 17:30:08 -0000 Author: pi Date: Wed Dec 6 17:30:06 2017 New Revision: 455665 URL: https://svnweb.freebsd.org/changeset/ports/455665 Log: audio/zynaddsubfx: fix build on cur, 10.x by force llvm40 PR: 220958 Submitted by: hselasky (maintainer) Modified: head/audio/zynaddsubfx/Makefile Modified: head/audio/zynaddsubfx/Makefile ============================================================================== --- head/audio/zynaddsubfx/Makefile Wed Dec 6 17:14:13 2017 (r455664) +++ head/audio/zynaddsubfx/Makefile Wed Dec 6 17:30:06 2017 (r455665) @@ -41,8 +41,8 @@ GUI_LIB_DEPENDS= libfltk.so:x11-toolkits/fltk \ libfontconfig.so:x11-fonts/fontconfig GUI_ON= -DGuiModule:STRING=fltk GUI_CMAKE_OFF= -DGuiModule:STRING=OFF -GUI_USE+= XORG=x11,xext,xfixes,xcursor,ice,sm,xpm,xinerama,xft -GUI_USE+= GL=glu +GUI_USE+= XORG=x11,xext,xfixes,xcursor,xrender,ice,sm,xpm,xinerama,xft +GUI_USE+= GL=gl,glu GUI_USES= jpeg OSS_CMAKE_ON= -DOssEnable:BOOL=ON @@ -76,6 +76,13 @@ PORTEXAMPLES= * CMAKE_ARGS+= -DZYN_DATADIR:STRING=${DATADIR} CMAKE_ARGS+= -DZYN_EXAMPLESDIR:STRING=${EXAMPLESDIR} + +.include + +# Build fix for ZynAddSubFx +BUILD_DEPENDS+= clang40:devel/llvm40 +CC= clang40 +CXX= clang++40 .include