svn commit: r469161 - head/audio/faust/files

Yuri Victorovich yuri at FreeBSD.org
Sat May 5 19:18:26 UTC 2018


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


More information about the svn-ports-all mailing list