1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00

math/cglm: Fix build by removing -Werror

Reported by:	fallout
This commit is contained in:
Yuri Victorovich 2023-07-07 20:59:12 -07:00
parent 5fc301443c
commit 1a984a49fb

View File

@ -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'
]