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 context 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,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2023/02/16 15:02:01 bsiegert Exp $
+# $NetBSD: Makefile,v 1.4 2023/02/27 20:32:39 bsiegert Exp $
 
 DISTNAME=	oauth2c-1.1.0
 PKGREVISION=	2
@@ -11,7 +11,7 @@
 COMMENT=	User-friendly CLI for OAuth2
 LICENSE=	apache-2.0
 
-USE_LANGUAGES=	# none
+USE_LANGUAGES=	c # go
 
 .include "go-modules.mk"