svn commit: r458026 - head/audio/sayonara/files

Adriaan de Groot adridg at FreeBSD.org
Thu Jan 4 12:48:05 UTC 2018


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


More information about the svn-ports-all mailing list