pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/musepack



Module Name:    pkgsrc
Committed By:   mrg
Date:           Sun Oct 12 01:05:52 UTC 2025

Modified Files:
        pkgsrc/audio/musepack: Makefile

Log Message:
use -Wno-incompatible-pointer-types to satisfy GCC 14.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/audio/musepack/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/musepack/Makefile
diff -u pkgsrc/audio/musepack/Makefile:1.7 pkgsrc/audio/musepack/Makefile:1.8
--- pkgsrc/audio/musepack/Makefile:1.7  Tue Aug 12 09:17:05 2025
+++ pkgsrc/audio/musepack/Makefile      Sun Oct 12 01:05:52 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2025/08/12 09:17:05 adam Exp $
+# $NetBSD: Makefile,v 1.8 2025/10/12 01:05:52 mrg Exp $
 
 DISTNAME=      musepack_src_r475
 PKGNAME=       musepack-0rc475
@@ -18,6 +18,11 @@ CMAKE_CONFIGURE_ARGS+=       -DCMAKE_POLICY_VE
 post-install:
        rm -rf ${DESTDIR}${PREFIX}/include/mpc/.svn/
 
+.include "../../mk/compiler.mk"
+.if !empty(CC_VERSION:Mgcc-14.*) || !empty(CC_VERSION:Mgcc-15.*)
+CFLAGS+=       -Wno-incompatible-pointer-types
+.endif
+
 .include "../../devel/cmake/build.mk"
 .include "../../audio/libcuefile/buildlink3.mk"
 .include "../../audio/libreplaygain/buildlink3.mk"



Home | Main Index | Thread Index | Old Index