1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00

lang/vala: disable incompatible function pointer type error

Generated code that is then passed to clang 16 errors with this.
Fixes to the code generator are substantial and may not be backported
to this release cycle, so work around as upstream suggests.

Context: https://gitlab.gnome.org/GNOME/vala/-/issues/1408
This commit is contained in:
Charlie Li 2023-06-23 23:56:57 -04:00
parent 3349708da9
commit c57cd4390a
No known key found for this signature in database
GPG Key ID: 678F936058415CCA

View File

@ -23,4 +23,7 @@ BUILD_DEPENDS+= ${_VALA_BINARY}:${_VALA_PORT}
. endif
. endif
# remove after https://gitlab.gnome.org/GNOME/vala/-/issues/1408 is fixed
CFLAGS+= -Wno-error=incompatible-function-pointer-types
.endif