ARJANEN Loïc Jean David
ARJANEN Loïc Jean David
Checking `assertVersion()` in `test_main.c`, if I'm not mistaken the version tests don't check for the exact version string but only if it starts with name of the program, space, version...
For the failing checks apparently it came from the check for zlib ≥1.2.1 which intervened in the mean time: in the autotools' version we weren't setting anymore `HAVE_LIBZ`, which was...
So, FreeBSD's test failure was apparently because its OpenSSL doesn't have `OPENSSL_VERSION_STR`, only `OPENSSL_VERSION_NUMBER` and there was an error in how I made a version string with the latter. It...
I have seen on the wiki that Michihiro was working on a pax front-end, what would be its state of advancement ? And where is it so that we could...
Since 3.8.0 zip supports multi-threaded compression so you can use e.g. "zip:threads=8" like #107 does for XZ. The only thing is that you also have to set the compression used...
Wouldn't that mean creating a Wincrypt backend for AES & co? Last I checked, a CNG backend exists for AES but not a Wincrypt one despite both ostensibly supporting it.
So, after #2538 enforced Wincrypt/bcrypt use on Windows remains testing the Wincrypt code paths. Should we really add a CI server running Windows XP or would a configure flag forcing...
Doesn't the combination of #2538 and #2556 close this issue? Because the former enforces using the Wincrypt/Bcrypt paths and by dropping all support for versions anterior to Vista and Server...
Given that I don't think there's a way to go from a `_locale_t` to a locale name I think the solution to avoid thread shenanigans is to use `_configthreadlocale` around...
From my reading of the [man page](https://man.freebsd.org/cgi/man.cgi?query=bsdtar&sektion=1), it's the expected behaviour: given the path into which you're extracting is a symlink, bsdtar refuses for security reasons. You'd need to either...