Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Sep 2024 14:48:05 GMT
From:      Lorenzo Salvadore <salvadore@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: e9e3b8343c58 - main - devel/smv: Fix build with GCC 14
Message-ID:  <202409051448.485Em5Nc066483@gitrepo.freebsd.org>

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

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

commit e9e3b8343c58e3a1346ce74e9db3fc1b0a319ff4
Author:     Lorenzo Salvadore <salvadore@FreeBSD.org>
AuthorDate: 2024-09-05 14:47:13 +0000
Commit:     Lorenzo Salvadore <salvadore@FreeBSD.org>
CommitDate: 2024-09-05 14:47:44 +0000

    devel/smv: Fix build with GCC 14
    
    GCC 14 has transformed some warnings into errors: revert them to simple
    warnings.
    
    PR:             281229
    Reported by:    exp-run (antoine)
---
 devel/smv/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/devel/smv/Makefile b/devel/smv/Makefile
index 03cfd1ad42f0..b2e9e0845db1 100644
--- a/devel/smv/Makefile
+++ b/devel/smv/Makefile
@@ -19,6 +19,8 @@ ALL_TARGET=	${PORTNAME}
 MAKEFILE=	makefile
 MAKE_JOBS_UNSAFE=	yes
 
+CFLAGS+=	-fpermissive
+
 PORTEXAMPLES=	*
 PORTDOCS=	NEW README smvmanual.ps
 



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