mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 07:26:29 -04:00
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)
10 lines
232 B
C++
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
|
|
{
|