pkgsrc-Changes archive

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

CVS commit: pkgsrc/graphics/vulkan-loader



Module Name:    pkgsrc
Committed By:   wiz
Date:           Wed Jul  1 13:15:44 UTC 2026

Modified Files:
        pkgsrc/graphics/vulkan-loader: Makefile

Log Message:
vulkan-loader: force gnu99

compilation warning suggests using it for proper alloca()

Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/graphics/vulkan-loader/Makefile

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

Modified files:

Index: pkgsrc/graphics/vulkan-loader/Makefile
diff -u pkgsrc/graphics/vulkan-loader/Makefile:1.1 pkgsrc/graphics/vulkan-loader/Makefile:1.2
--- pkgsrc/graphics/vulkan-loader/Makefile:1.1  Mon Apr 13 13:56:07 2026
+++ pkgsrc/graphics/vulkan-loader/Makefile      Wed Jul  1 13:15:44 2026
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.1 2026/04/13 13:56:07 kikadf Exp $
+# $NetBSD: Makefile,v 1.2 2026/07/01 13:15:44 wiz Exp $
 
 .include "../../graphics/vulkan-headers/Makefile.common"
 
 DISTNAME=      vulkan-loader-${SDK_VERSION}
+PKGREVISION=   1
 CATEGORIES=    graphics
 GITHUB_PROJECT=        Vulkan-Loader
 EXTRACT_USING= bsdtar
@@ -15,6 +16,10 @@ LICENSE=     apache-2.0
 WRKSRC=                ${WRKDIR}/${GITHUB_PROJECT}-${GITHUB_TAG}
 USE_TOOLS+=    pkg-config
 
+USE_CC_FEATURES=       c99
+# Warning: reference to the libc supplied alloca(3); this most likely will not work. Please use the compiler provided version of alloca(3), by supplying the appropriate compiler flags (e.g. 
-std=gnu99).
+FORCE_C_STD=           gnu99
+
 LIBVERSION=    ${PKGVERSION_NOREV:R}
 PLIST_SUBST+=  LIBVERSION=${LIBVERSION}
 



Home | Main Index | Thread Index | Old Index