git: 750bd9da674e - 2023Q3 - math/cglm: Fix build by removing -Werror
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 11 Jul 2023 19:01:01 UTC
The branch 2023Q3 has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=750bd9da674e49d7e1546b7842d6da18a177e8f8 commit 750bd9da674e49d7e1546b7842d6da18a177e8f8 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2023-07-08 03:59:12 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2023-07-11 19:00:56 +0000 math/cglm: Fix build by removing -Werror Reported by: fallout (cherry picked from commit 1a984a49fb56983103648503784e507099d402be) --- math/cglm/files/patch-meson.build | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/math/cglm/files/patch-meson.build b/math/cglm/files/patch-meson.build new file mode 100644 index 000000000000..fd4120f91a7f --- /dev/null +++ b/math/cglm/files/patch-meson.build @@ -0,0 +1,13 @@ +- workaround for the i386 faulure, see https://github.com/recp/cglm/issues/327 + +--- meson.build.orig 2023-07-08 03:45:00 UTC ++++ meson.build +@@ -3,7 +3,7 @@ project('cglm', 'c', + license : 'mit', + default_options : [ + 'c_std=c11', +- 'werror=true', ++ 'werror=false', + 'warning_level=2', + 'buildtype=release' + ]