1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

irc/irssi-icb: Fix build failures for 13.3-RELEASE.

Clang 16.0.6 warning mitigations were not applied to 13.3.
This commit is contained in:
Santhosh Raju 2024-08-04 19:22:44 +02:00
parent 8293bd5812
commit 6af58f5ee0

View File

@ -32,7 +32,7 @@ PLIST_FILES= lib/irssi/modules/libfe_icb.so \
.include <bsd.port.pre.mk>
# Fixes build failure for Clang 16.0.6
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400092
.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1400091 || ( ${OSVERSION} >= 1302507 && ${OSVERSION} < 1400000 ))
CFLAGS+= -Wno-error=incompatible-function-pointer-types
.endif