Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Sep 2019 16:06:24 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r512520 - head/audio/bsequencer-lv2/files
Message-ID:  <201909211606.x8LG6OfD077586@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sat Sep 21 16:06:24 2019
New Revision: 512520
URL: https://svnweb.freebsd.org/changeset/ports/512520

Log:
  audio/bsequencer-lv2: fix build on GCC architectures
  
  src/ButtonBox.hpp needs include sys/types.h for uint.
  
  PR:		240663
  Approved by:	yuri (maintainer), linimon (mentor)
  Differential Revision:	https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=240663

Added:
  head/audio/bsequencer-lv2/files/patch-src_ButtonBox.hpp   (contents, props changed)

Added: head/audio/bsequencer-lv2/files/patch-src_ButtonBox.hpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/bsequencer-lv2/files/patch-src_ButtonBox.hpp	Sat Sep 21 16:06:24 2019	(r512520)
@@ -0,0 +1,10 @@
+--- src/ButtonBox.hpp.orig	2019-09-18 08:50:30 UTC
++++ src/ButtonBox.hpp
+@@ -1,6 +1,7 @@
+ #ifndef BUTTONBOX_HPP_
+ #define BUTTONBOX_HPP_
+ 
++#include <sys/types.h>
+ #include <vector>
+ #include <cmath>
+ #include "BWidgets/BColors.hpp"



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