ports/audio/bharvestr-lv2/files/patch-src_BWidgets_FileChooser.hpp
Piotr Kubaj 5aa8a59607 audio/bharvestr-lv2: fix build on GCC architectures
Require C++11 compiler because of -std=c++11.

Include climits in FileChooser.hpp because of INT64_MAX (GCC doesn't do that by default).

PR:		248134
Approved by:	portmgr (blanket: build fix)
MFH:		2020Q3 (blanket: build fix)
2020-07-21 08:23:08 +00:00

10 lines
232 B
C++

--- src/BWidgets/FileChooser.hpp.orig 2020-07-20 09:39:49 UTC
+++ src/BWidgets/FileChooser.hpp
@@ -24,6 +24,7 @@
#include "PopupListBox.hpp"
#include "TextButton.hpp"
#include <regex>
+#include <climits>
namespace BWidgets
{