Jonathan Schleifer

Results 88 comments of Jonathan Schleifer

I successfully compiled and run all tests of https://github.com/ObjFW/ObjFW compiled with amigaos-cross-toolchain. :)

Ping? I just did another build (with `c,objc`, though, as `c,c++` would not build for me because it suddenly tried using the system C++ headers and then obviously failed due...

I ran into the same thing. What's missing here is --disable-werror in the configure flags for binutils. With this, building binutils on macOS works fine. The reason for this is...

I agree that there's no real need to expose them, as they're only POSIX. I can see the argument of not wanting to introduce any diffs in newlib to make...

??? I'm talking about this: https://blog.kraken.com/post/3662/kraken-identifies-critical-flaw-in-trezor-hardware-wallets/ Trezor's official statement was that it's not too bad because you can use a passphrase to protect your wallet. However, you'd also need a...

?? What do you mean by "synchronize your wallet"? What is that even supposed to mean in the context of *GnuPG*?! And what should I debug here - how do...

Ok, seems that in this case, the terminal would paste the old contents, but wl-paste would paste the new. Only had one instance of this so far.

Looking at the code, I think there's a need for special casing depending on the passed level and option. For SOL_SOCKET, SO_ERROR, _net_convert_error() needs to be called on *opt. In...

That does not solve the part that it still returns EINPROGRESS, but that at least is easily patched in software (treat EINPROGRESS after the poll triggered the same as 0)

I wait for it using poll(). When I call connect again, it indeed tells me EISCONN. However, if there is an error, the poll() seems to never return, and I'm...