Hilko Bengen

Results 124 comments of Hilko Bengen

@Xumeiquer Please tell me what exact command you used to build your program so I can try to reproduce it. One thing that strikes me as odd is that even...

A thing that seems odd to me is that you are patching specific configure options into the setup script; did `--depsargs` not work for you? Could you try if adding...

> Using --depsargs doesn't work because what yara build process needs is > to run the bootstrap first. Ah, this is probably why I roll my own scripts / Makefiles...

Hi, I am the person who reported the bug within Debian. (We can continue the conversation without having to rely on @marillat to relay bits and pieces.) My best uneducateed...

I may have found hints towards what is going on here. Apparently OpenSSL's CONF_modules_unload is run twice (why?) through `atexit` handlers and then a `boost::asio::ssl` which also wants to run...

Patching the preprocessor magic around `::CONF_modules_unload(1);` in `boost::asio::ssl::detail::openssl_init_base::do_init::~do_init` and rebuilding Boost and libtorrent fixed the issue for me. And Boost seem to have fixed this problem for OpenSSL >= 3,...

I have put the relevant header files into . `/usr/include/x86_64-linux-gnu/sys/cdefs.h` is responsible for the `__THROW` macro -- and I am sure that it is included, as my `TrackIncludes` function showed....

`ccgo -o foo.go foo.c` works just fine -- where `foo.c` contains ``` c #include int main () {} ```

Uh, I think I got the solutionn wrong. If make sure that neither `dllimport` nor `dllexport` are seen by the C++ compiler, I can build the static library and link...

I think the only missing piece is the script I used to fetch and build pe-sieve in the subdirectory `_pesieve` that is referenced in the Makefile: ``` shell #!/bin/sh set...