From owner-svn-ports-all@freebsd.org Tue Jan 2 20:30:40 2018 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 EDFE1EB7DE0; Tue, 2 Jan 2018 20:30:40 +0000 (UTC) (envelope-from feld@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 B9AA571BC2; Tue, 2 Jan 2018 20:30:40 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w02KUdNk045260; Tue, 2 Jan 2018 20:30:39 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w02KUdKc045258; Tue, 2 Jan 2018 20:30:39 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201801022030.w02KUdKc045258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 2 Jan 2018 20:30:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457922 - in head/audio/mumble: . audio audio/mumble audio/mumble/files X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/audio/mumble: . audio audio/mumble audio/mumble/files X-SVN-Commit-Revision: 457922 X-SVN-Commit-Repository: ports 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.25 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, 02 Jan 2018 20:30:41 -0000 Author: feld Date: Tue Jan 2 20:30:39 2018 New Revision: 457922 URL: https://svnweb.freebsd.org/changeset/ports/457922 Log: audio/mumble: add patch to fix build against boost 1.66 PR: 224086 Added: head/audio/mumble/audio/ head/audio/mumble/audio/mumble/ head/audio/mumble/audio/mumble/files/ head/audio/mumble/audio/mumble/files/extrapatch-fix-build-boost-1.66 (contents, props changed) Modified: head/audio/mumble/Makefile Modified: head/audio/mumble/Makefile ============================================================================== --- head/audio/mumble/Makefile Tue Jan 2 20:21:34 2018 (r457921) +++ head/audio/mumble/Makefile Tue Jan 2 20:30:39 2018 (r457922) @@ -3,7 +3,7 @@ PORTNAME= mumble PORTVERSION= 1.2.19 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MAINTAINER= feld@FreeBSD.org Added: head/audio/mumble/audio/mumble/files/extrapatch-fix-build-boost-1.66 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/mumble/audio/mumble/files/extrapatch-fix-build-boost-1.66 Tue Jan 2 20:30:39 2018 (r457922) @@ -0,0 +1,26 @@ +diff --git a/src/mumble/AudioOutput.cpp b/src/mumble/AudioOutput.cpp +index cbe0c0e2b..7a0a5e2ab 100644 +--- a/src/mumble/AudioOutput.cpp ++++ b/src/mumble/AudioOutput.cpp +@@ -437,7 +437,7 @@ bool AudioOutput::mix(void *outbuff, unsigned int nsamp) { + top[2] = 0.0f; + } + +- if (std::abs(front[0] * top[0] + front[1] * top[1] + front[2] * top[2]) > 0.01f) { ++ if (std::abs(front[0] * top[0] + front[1] * top[1] + front[2] * top[2]) > 0.01f) { + // Not perpendicular. Assume Y up and rotate 90 degrees. + + float azimuth = 0.0f; +diff --git a/src/mumble/mumble_pch.hpp b/src/mumble/mumble_pch.hpp +index ba87eab3b..dac5ba629 100644 +--- a/src/mumble/mumble_pch.hpp ++++ b/src/mumble/mumble_pch.hpp +@@ -37,6 +37,8 @@ + #include + #include + ++#include ++ + #ifdef Q_OS_WIN + #include + #define ENABLE_SNDFILE_WINDOWS_PROTOTYPES 1