diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2023-01-17 09:41:52 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2023-01-17 09:42:38 +0000 |
commit | a9e125957825559e0df43cd1764f41bb8b2e834a (patch) | |
tree | c827ed052827567a87d4ae53225843a468e065f8 | |
parent | f3f65cea3c80301fd51c074cefa5ddc34837a8b7 (diff) |
devel/ftxui: Fix build on aarch64
... by disable fuzzing options
Reported by: fallout
-rw-r--r-- | devel/ftxui/files/patch-cmake_ftxui__fuzzer.cmake | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/ftxui/files/patch-cmake_ftxui__fuzzer.cmake b/devel/ftxui/files/patch-cmake_ftxui__fuzzer.cmake new file mode 100644 index 000000000000..a3ce3c931e9b --- /dev/null +++ b/devel/ftxui/files/patch-cmake_ftxui__fuzzer.cmake @@ -0,0 +1,12 @@ +- workaround for https://github.com/ArthurSonzogni/FTXUI/issues/556 + +--- cmake/ftxui_fuzzer.cmake.orig 2023-01-14 19:37:42 UTC ++++ cmake/ftxui_fuzzer.cmake +@@ -23,5 +23,5 @@ function(fuzz name) + ) + endfunction(fuzz) + +-fuzz(terminal_input_parser_test_fuzzer) +-fuzz(component_fuzzer) ++#fuzz(terminal_input_parser_test_fuzzer) ++#fuzz(component_fuzzer) |