pkgsrc-Changes archive

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

CVS commit: pkgsrc/audio/kew



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sat Nov 30 19:36:10 UTC 2024

Modified Files:
        pkgsrc/audio/kew: Makefile

Log Message:
kew: set GCC_REQD=8

With gcc 7, this throws
error: initializer element is not constant
doesn't matter what C standard is set with -std; works fine with gcc 8.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/audio/kew/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/kew/Makefile
diff -u pkgsrc/audio/kew/Makefile:1.2 pkgsrc/audio/kew/Makefile:1.3
--- pkgsrc/audio/kew/Makefile:1.2       Thu Oct 24 15:25:27 2024
+++ pkgsrc/audio/kew/Makefile   Sat Nov 30 19:36:10 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2024/10/24 15:25:27 ktnb Exp $
+# $NetBSD: Makefile,v 1.3 2024/11/30 19:36:10 wiz Exp $
 
 DISTNAME=      kew-3.0.0
 CATEGORIES=    audio
@@ -12,6 +12,9 @@ LICENSE=      gnu-gpl-v2
 
 USE_LANGUAGES= c c++
 
+# for "error: initializer element is not constant"
+GCC_REQD+=     8
+
 USE_TOOLS+=    pkg-config gmake
 
 MAKE_FLAGS+=   MAN_DIR=${PREFIX}/${PKGMANDIR}



Home | Main Index | Thread Index | Old Index