summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2024-04-26 00:15:21 -0700
committerYuri Victorovich <yuri@FreeBSD.org>2024-04-26 00:15:21 -0700
commitd08f368e408060084584290c105618ebd6ff5fff (patch)
tree147b28c9ea0462338be875ca3d7fb8c19f510ca4
parentsecurity/palisade: Fix build on 15 by removing -Werror (diff)
devel/phasar: Fix build on some systems by adding missing #include <vector>
Reported by: fallout
-rw-r--r--devel/phasar/files/patch-lib_Pointer_PointsToInfo.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/phasar/files/patch-lib_Pointer_PointsToInfo.cpp b/devel/phasar/files/patch-lib_Pointer_PointsToInfo.cpp
new file mode 100644
index 000000000000..cc1e589eeb10
--- /dev/null
+++ b/devel/phasar/files/patch-lib_Pointer_PointsToInfo.cpp
@@ -0,0 +1,12 @@
+- workaround for https://github.com/secure-software-engineering/phasar/issues/718
+
+--- lib/Pointer/PointsToInfo.cpp.orig 2024-04-26 06:58:43 UTC
++++ lib/Pointer/PointsToInfo.cpp
+@@ -19,6 +19,7 @@
+
+ #include <array>
+ #include <utility>
++#include <vector>
+
+ namespace llvm {
+ class Value;