pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/audio/libgpod



Module Name:    pkgsrc
Committed By:   pgoyette
Date:           Sat Nov 15 17:59:42 UTC 2025

Modified Files:
        pkgsrc/audio/libgpod: Makefile

Log Message:
Avoid gcc14 issues


To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 pkgsrc/audio/libgpod/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/libgpod/Makefile
diff -u pkgsrc/audio/libgpod/Makefile:1.98 pkgsrc/audio/libgpod/Makefile:1.99
--- pkgsrc/audio/libgpod/Makefile:1.98  Thu Oct 23 20:35:48 2025
+++ pkgsrc/audio/libgpod/Makefile       Sat Nov 15 17:59:42 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.98 2025/10/23 20:35:48 wiz Exp $
+# $NetBSD: Makefile,v 1.99 2025/11/15 17:59:42 pgoyette Exp $
 
 DISTNAME=      libgpod-0.8.3
 PKGREVISION=   24
@@ -18,6 +18,11 @@ USE_PKGLOCALEDIR=    yes
 USE_TOOLS+=            gmake intltool msgfmt pkg-config
 GNU_CONFIGURE=         yes
 
+.include "../../mk/compiler.mk"
+.if !empty(CC_VERSION:Mgcc-14.*) || !empty(CC_VERSION:Mgcc-15.*)
+CFLAGS+=       -Wno-error=incompatible-pointer-types
+.endif
+
 .include "../../mk/bsd.prefs.mk"
 
 .if ${OPSYS} != "Linux"



Home | Main Index | Thread Index | Old Index