1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

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
This commit is contained in:
Piotr Kubaj 2019-09-21 16:06:24 +00:00
parent dc88041e86
commit 123ceee9f2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=512520

View File

@ -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"