Simon Josefsson
Simon Josefsson
> @jas4711 I have had discussions with my firmware developers team today. > > They say that it probably is technically feasible Thanks for bringing this up. Interesting! I feared...
To clarify, no need to build this on experimental specifically, it should happen if you build nsd 4.10.0rc1 via the nsd Debian package infrastructure for unstable or testing (and likely...
Thanks for ping @k0ekk0ek -- I have tried building 4.10.1rc2 using the Debian build framework, and it builds fine now, even with `-D_XOPEN_SOURCE=600` that the Debian build framework add for...
FWIW, I've uploaded 4.10.1rc2 to Debian experimental and builds are looking good: https://buildd.debian.org/status/package.php?p=nsd&suite=experimental I dropped the manual `-D_XOPEN_SOURCE=600` specifier, letting the defaults come into play.
FWIW, I have now seen this also for the `TestSign` test on a s390x system: ``` === RUN TestSign sign_test.go:58: expected SigningTime to be now. Difference was -1.001646255s --- FAIL:...
I tried to fix this myself in #664 - what do you think? We may end up using something like it in the Debian packaging.
FWIW, here is the patch we use in Debian to fix this: https://salsa.debian.org/debian/guile-fibers/-/blob/debian/latest/debian/patches/concurrent-web-server-connection-refused.patch?ref_type=heads
Reading the code has a link to: https://github.com/golang/crypto/blob/master/ssh/keys.go Which uses this BSD-license: https://github.com/golang/crypto/blob/master/LICENSE I'm going to assume this is the intended "BSD-style" license, but clarifying this file would be good.
Hi! Was any code copied? I think that is the main question if the old copyright/license has to be retained or not.
FWIW, In Debian we now use a workaround to avoid triggering this code, involving: 1. Set `TEST_SRCDIR` when `go test` is invoked, to avoid triggering the `go mod download` code...