ports/audio/bsequencer-lv2/files/patch-src_ButtonBox.hpp
Piotr Kubaj 123ceee9f2 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
2019-09-21 16:06:24 +00:00

10 lines
233 B
C++

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