Mon Feb 27 20:32:39 2023 UTC ()
oauth2c: allow using the C compiler

With Go 1.20, which no longer delivers a compiled version of the standard
library, some code that did not need it now needs to compile some cgo code,
which needs a compiler.


(bsiegert)
diff -r1.3 -r1.4 pkgsrc/security/oauth2c/Makefile

cvs diff -r1.3 -r1.4 pkgsrc/security/oauth2c/Makefile (expand / switch to unified diff)

--- pkgsrc/security/oauth2c/Makefile 2023/02/16 15:02:01 1.3
+++ pkgsrc/security/oauth2c/Makefile 2023/02/27 20:32:39 1.4
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1# $NetBSD: Makefile,v 1.3 2023/02/16 15:02:01 bsiegert Exp $ 1# $NetBSD: Makefile,v 1.4 2023/02/27 20:32:39 bsiegert Exp $
2 2
3DISTNAME= oauth2c-1.1.0 3DISTNAME= oauth2c-1.1.0
4PKGREVISION= 2 4PKGREVISION= 2
5CATEGORIES= security 5CATEGORIES= security
6MASTER_SITES= ${MASTER_SITE_GITHUB:=cloudentity/} 6MASTER_SITES= ${MASTER_SITE_GITHUB:=cloudentity/}
7GITHUB_TAG= v${PKGVERSION_NOREV} 7GITHUB_TAG= v${PKGVERSION_NOREV}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= https://github.com/cloudentity/oauth2c/ 10HOMEPAGE= https://github.com/cloudentity/oauth2c/
11COMMENT= User-friendly CLI for OAuth2 11COMMENT= User-friendly CLI for OAuth2
12LICENSE= apache-2.0 12LICENSE= apache-2.0
13 13
14USE_LANGUAGES= # none 14USE_LANGUAGES= c # go
15 15
16.include "go-modules.mk" 16.include "go-modules.mk"
17 17
18.include "../../lang/go/go-module.mk" 18.include "../../lang/go/go-module.mk"
19.include "../../mk/bsd.pkg.mk" 19.include "../../mk/bsd.pkg.mk"