Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Aug 2024 20:51:36 GMT
From:      Santhosh Raju <fox@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 6af58f5ee0af - main - irc/irssi-icb: Fix build failures for 13.3-RELEASE.
Message-ID:  <202408042051.474KpaEo019894@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by fox:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6af58f5ee0afa4abc971f12dbc262213a040ca14

commit 6af58f5ee0afa4abc971f12dbc262213a040ca14
Author:     Santhosh Raju <fox@FreeBSD.org>
AuthorDate: 2024-08-04 17:22:44 +0000
Commit:     Santhosh Raju <fox@FreeBSD.org>
CommitDate: 2024-08-04 20:35:52 +0000

    irc/irssi-icb: Fix build failures for 13.3-RELEASE.
    
    Clang 16.0.6 warning mitigations were not applied to 13.3.
---
 irc/irssi-icb/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/irc/irssi-icb/Makefile b/irc/irssi-icb/Makefile
index eb12b2869554..9d5cb232809c 100644
--- a/irc/irssi-icb/Makefile
+++ b/irc/irssi-icb/Makefile
@@ -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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202408042051.474KpaEo019894>