pkgsrc-Changes archive

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

CVS commit: pkgsrc/emulators/wine



Module Name:    pkgsrc
Committed By:   pgoyette
Date:           Fri Nov 14 19:04:36 UTC 2025

Modified Files:
        pkgsrc/emulators/wine: Makefile

Log Message:
Add hack to avoid issues with gcc14


To generate a diff of this commit:
cvs rdiff -u -r1.274 -r1.275 pkgsrc/emulators/wine/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/emulators/wine/Makefile
diff -u pkgsrc/emulators/wine/Makefile:1.274 pkgsrc/emulators/wine/Makefile:1.275
--- pkgsrc/emulators/wine/Makefile:1.274        Thu Oct 23 20:36:53 2025
+++ pkgsrc/emulators/wine/Makefile      Fri Nov 14 19:04:36 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.274 2025/10/23 20:36:53 wiz Exp $
+# $NetBSD: Makefile,v 1.275 2025/11/14 19:04:36 pgoyette Exp $
 
 DISTNAME=      wine-9.0
 PKGREVISION=   10
@@ -16,6 +16,11 @@ USE_LANGUAGES=       c c++
 USE_TOOLS+=    bison flex gmake mktemp msgfmt perl pkg-config
 GNU_CONFIGURE= yes
 
+.include "../../mk/compiler.mk"
+.if !empty(CC_VERSION:Mgcc-14.*) || !empty(CC_VERSION:Mgcc-15.*)
+CFLAGS+=       -Wno-error=implicit-function-declaration
+.endif
+
 REPLACE_PERL+= tools/winemaker/winemaker
 REPLACE_PERL+= tools/winedump/function_grep.pl
 



Home | Main Index | Thread Index | Old Index