diff options
author | Dmitri Goutnik <dmgk@FreeBSD.org> | 2023-02-03 10:44:50 -0500 |
---|---|---|
committer | Dmitri Goutnik <dmgk@FreeBSD.org> | 2023-02-03 13:08:52 -0500 |
commit | fe49bf2a8987602bafa1246f6084cfcd84c0e080 (patch) | |
tree | fb19d15d5efaa30846837743e3901c54138ca0ef /dns | |
parent | net/libgweather4: Update to 4.2.0 (diff) |
dns/dnscrypt-proxy2: Pin Go version to 1.19
vendor/github.com/lucas-clemente/quic-go/internal/qtls/go120.go:6:13: cannot use "The version of quic-go you're using can't be built on Go 1.20 yet.
quic-go doesn't support go1.20 yet, keep building this port with go1.19
for now.
PR: 269289
Reported by: exp-run
Diffstat (limited to 'dns')
-rw-r--r-- | dns/dnscrypt-proxy2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/dnscrypt-proxy2/Makefile b/dns/dnscrypt-proxy2/Makefile index 0f2c2bd7fbdd..f3c041c5e464 100644 --- a/dns/dnscrypt-proxy2/Makefile +++ b/dns/dnscrypt-proxy2/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ca_root_nss>=3.35:security/ca_root_nss -USES= go:modules +USES= go:1.19,modules USE_RC_SUBR= ${PORTNAME} USE_GITHUB= yes |