pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/audio/ices-mp3
Module Name: pkgsrc
Committed By: kim
Date: Fri Dec 26 08:21:31 UTC 2025
Modified Files:
pkgsrc/audio/ices-mp3: Makefile
Log Message:
Work around gcc14
To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 pkgsrc/audio/ices-mp3/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/ices-mp3/Makefile
diff -u pkgsrc/audio/ices-mp3/Makefile:1.64 pkgsrc/audio/ices-mp3/Makefile:1.65
--- pkgsrc/audio/ices-mp3/Makefile:1.64 Mon Aug 18 05:26:28 2025
+++ pkgsrc/audio/ices-mp3/Makefile Fri Dec 26 08:21:31 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.64 2025/08/18 05:26:28 kim Exp $
+# $NetBSD: Makefile,v 1.65 2025/12/26 08:21:31 kim Exp $
#
DISTNAME= ices-${ICES_VERSION}
@@ -36,6 +36,13 @@ MODDIR= ${PREFIX}/share/${PKGBASE}
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
+.include "../../mk/compiler.mk"
+.if !empty(CC_VERSION:Mgcc-14.*) || !empty(CC_VERSION:Mgcc-15.*)
+CFLAGS+= -Wno-incompatible-pointer-types
+CFLAGS+= -Wno-implicit-function-declaration
+CFLAGS+= -Wno-pointer-sign
+.endif
+
pre-configure:
cd ${WRKSRC} && autoreconf --force -i
Home |
Main Index |
Thread Index |
Old Index