Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Jan 2018 12:48:03 +0000 (UTC)
From:      Adriaan de Groot <adridg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r458026 - head/audio/sayonara/files
Message-ID:  <201801041248.w04Cm3Pu063109@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adridg
Date: Thu Jan  4 12:48:03 2018
New Revision: 458026
URL: https://svnweb.freebsd.org/changeset/ports/458026

Log:
  Fix build on 10.3 i386 noticed by pkg-fallout. Patch has also been
  submitted upstream. Now tested on 10.3 i386 and 11.1 amd64.
  
  Approved by:	rakuco (mentor)
  Differential Revision:	https://reviews.freebsd.org/D13765

Added:
  head/audio/sayonara/files/
  head/audio/sayonara/files/patch-src_Components_Engine_AbstractEngine.cpp   (contents, props changed)

Added: head/audio/sayonara/files/patch-src_Components_Engine_AbstractEngine.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/sayonara/files/patch-src_Components_Engine_AbstractEngine.cpp	Thu Jan  4 12:48:03 2018	(r458026)
@@ -0,0 +1,13 @@
+Missing include needed for std::abs; this caused a build error on 10.3 i386.
+
+--- src/Components/Engine/AbstractEngine.cpp.orig	2017-12-31 13:34:19 UTC
++++ src/Components/Engine/AbstractEngine.cpp
+@@ -29,6 +29,8 @@
+ 
+ #include <gst/gst.h>
+ 
++#include <cstdlib>
++
+ using Engine::Base;
+ 
+ struct Base::Private



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801041248.w04Cm3Pu063109>