aboutsummaryrefslogtreecommitdiff
path: root/audio/bsequencer-lv2
diff options
context:
space:
mode:
authorPiotr Kubaj <pkubaj@FreeBSD.org>2019-09-21 16:06:24 +0000
committerPiotr Kubaj <pkubaj@FreeBSD.org>2019-09-21 16:06:24 +0000
commit123ceee9f29537799f2bc130994980718e265555 (patch)
tree1955ae3be5c9afce88afecf51a495fa9ca28d5d9 /audio/bsequencer-lv2
parentdc88041e8650cd965e350e5105cc289ef73dbca3 (diff)
downloadports-123ceee9f29537799f2bc130994980718e265555.tar.gz
ports-123ceee9f29537799f2bc130994980718e265555.zip
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
Notes
Notes: svn path=/head/; revision=512520
Diffstat (limited to 'audio/bsequencer-lv2')
-rw-r--r--audio/bsequencer-lv2/files/patch-src_ButtonBox.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/audio/bsequencer-lv2/files/patch-src_ButtonBox.hpp b/audio/bsequencer-lv2/files/patch-src_ButtonBox.hpp
new file mode 100644
index 000000000000..9508fff8d812
--- /dev/null
+++ b/audio/bsequencer-lv2/files/patch-src_ButtonBox.hpp
@@ -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"