Date: Sat, 5 May 2018 19:18:25 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469161 - head/audio/faust/files Message-ID: <201805051918.w45JIPZV019247@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sat May 5 19:18:25 2018 New Revision: 469161 URL: https://svnweb.freebsd.org/changeset/ports/469161 Log: audio/faust: Unbreak by making it accept any llvm versions LLVM versions were hardcoded to the list 5.0.0, 5.0.1. When 5.0.2 came it caused faust to break. Fixed this by accepting any llvm versions. Added: head/audio/faust/files/patch-compiler_Makefile.unix (contents, props changed) Added: head/audio/faust/files/patch-compiler_Makefile.unix ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/faust/files/patch-compiler_Makefile.unix Sat May 5 19:18:25 2018 (r469161) @@ -0,0 +1,17 @@ +--- compiler/Makefile.unix.orig 2018-05-05 19:02:08 UTC ++++ compiler/Makefile.unix +@@ -150,12 +150,12 @@ else ifeq ($(LLVM_VERSION),$(filter $(LL + CLANGLIBS=$(CLANGLIBSLIST) + CXXFLAGS += -std=gnu++11 + +-else ifeq ($(LLVM_VERSION),$(filter $(LLVM_VERSION), 5.0.0 5.0.1)) ++else ifeq ($(patsubst 5.%,5,$(LLVM_VERSION)), 5) + LLVM_VERSION = LLVM_50 + CLANGLIBS=$(CLANGLIBSLIST) + CXXFLAGS += -std=gnu++11 + +-else ifeq ($(LLVM_VERSION),$(filter $(LLVM_VERSION), 6.0.0 6.0.0svn)) ++else ifeq ($(patsubst 6.%,6,$(LLVM_VERSION)), 6) + LLVM_VERSION = LLVM_60 + CLANGLIBS=$(CLANGLIBSLIST) + CXXFLAGS += -std=gnu++11
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805051918.w45JIPZV019247>