blob: 8d77b33d5949a2de1bed781e8f8ef1a1d3d777c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- lib/libimhex/source/helpers/paths.cpp.orig 2021-12-16 17:57:41 UTC
+++ lib/libimhex/source/helpers/paths.cpp
@@ -8,10 +8,15 @@
#include <shlobj.h>
#elif defined(OS_LINUX)
#include <xdg.hpp>
+# if defined(__FreeBSD__)
+ #include <sys/syslimits.h>
+# else
#include <linux/limits.h>
+# endif
#endif
#include <algorithm>
+#include <array>
#include <filesystem>
#include <string>
#include <vector>
|