svn commit: r512520 - head/audio/bsequencer-lv2/files

Piotr Kubaj pkubaj at FreeBSD.org
Sat Sep 21 16:06:25 UTC 2019


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"


More information about the svn-ports-all mailing list