pkgsrc-Changes archive

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

CVS commit: pkgsrc/security/qca2-qt5-ossl



Module Name:    pkgsrc
Committed By:   gdt
Date:           Thu May  1 12:00:38 UTC 2025

Modified Files:
        pkgsrc/security/qca2-qt5-ossl: Makefile

Log Message:
security/qca2-qt5-ossl: Force CMAKE_GENERATOR=make

This package fails to build with ninja (because of ninja not handling
subdir builds).  Abuse CMAKE_GENERATOR, following cmake/build.mk
comments.

Resolves building with "CMAKE_GENERATOR?=ninja" in mk.conf, and should
not change a previously successful build, which must have been with
make, so no PKGREVISION++.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 pkgsrc/security/qca2-qt5-ossl/Makefile

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

Modified files:

Index: pkgsrc/security/qca2-qt5-ossl/Makefile
diff -u pkgsrc/security/qca2-qt5-ossl/Makefile:1.38 pkgsrc/security/qca2-qt5-ossl/Makefile:1.39
--- pkgsrc/security/qca2-qt5-ossl/Makefile:1.38 Thu Apr 24 14:15:41 2025
+++ pkgsrc/security/qca2-qt5-ossl/Makefile      Thu May  1 12:00:38 2025
@@ -1,11 +1,14 @@
-# $NetBSD: Makefile,v 1.38 2025/04/24 14:15:41 wiz Exp $
+# $NetBSD: Makefile,v 1.39 2025/05/01 12:00:38 gdt Exp $
 
 PKGNAME=       qca2-qt5-ossl-${DISTNAME:C/.*-//}
 PKGREVISION=   6
 
 COMMENT=       Cross-platform crypto API for Qt5 - OpenSSL plugin
 
-BUILD_DIRS=    plugins/qca-ossl
+BUILD_DIRS=            plugins/qca-ossl
+# ninja does not handle subdir builds.  Abuse user-settable variable
+# following cmake/build.mk guidance.
+CMAKE_GENERATOR=       make
 
 .include "../../security/qca2-qt5/Makefile.common"
 



Home | Main Index | Thread Index | Old Index