From owner-svn-ports-head@freebsd.org Mon Dec 18 22:24:14 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 46C59E8DA96; Mon, 18 Dec 2017 22:24:14 +0000 (UTC) (envelope-from yuri@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 1304073F42; Mon, 18 Dec 2017 22:24:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBIMODo7041652; Mon, 18 Dec 2017 22:24:13 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBIMODW8041651; Mon, 18 Dec 2017 22:24:13 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201712182224.vBIMODW8041651@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 18 Dec 2017 22:24:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456689 - in head/multimedia/webcamoid: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/multimedia/webcamoid: . files X-SVN-Commit-Revision: 456689 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: Mon, 18 Dec 2017 22:24:14 -0000 Author: yuri Date: Mon Dec 18 22:24:12 2017 New Revision: 456689 URL: https://svnweb.freebsd.org/changeset/ports/456689 Log: multimedia/webcamoid: Unbreaking clang-built app with USE_GCC=6.0+ Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D13512 Deleted: head/multimedia/webcamoid/files/patch-libAvKys_Plugins_MultiSrc_src_multisrcelement.cpp Modified: head/multimedia/webcamoid/Makefile Modified: head/multimedia/webcamoid/Makefile ============================================================================== --- head/multimedia/webcamoid/Makefile Mon Dec 18 22:22:30 2017 (r456688) +++ head/multimedia/webcamoid/Makefile Mon Dec 18 22:24:12 2017 (r456689) @@ -2,6 +2,7 @@ PORTNAME= webcamoid DISTVERSION= 8.1.0 +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= yuri@FreeBSD.org @@ -26,5 +27,11 @@ USE_QT5= concurrent core gui multimedia network opengl MAKE_ENV= NOOSS=1 # NOOSS is because the OSS module attempts to use kevent on OSS devices, which is broken in the base QMAKE_ARGS= INSTALLQMLDIR=${QT_QMLDIR} \ MANDIR=${PREFIX}/man + +# Workaround for the crash when built with clang that the upstream author says is a bug in clang +USE_GCC= 6.0+ + +# Workaround for Bug#224137: devel/qt5-qmake: Doesn't use the right compiler in case USE_GCC is selected +BINARY_ALIAS= g++=${CXX} .include