15:42:47 what is ldns depedency used for exactly? 15:44:54 I think that's used by unbound. 15:45:00 git grep there will show for sure. 18:05:09 FYI xmrchain.net daemons are updated to 0.16.0.0 . a bin drop worked. didn't recompile explorer 19:16:55 luigi1111w: could you merge #6531 #6535 #6582 ? thanks 19:17:06 and also https://github.com/monero-project/supercop/pull/3 if you are ok with it (afaik you looked at it) 19:17:19 and also that 1 gui PR :) 19:17:42 ok 19:27:41 hrm, daemon doesn't wanna exit 19:28:08 recent 16 compile. 19:29:11 what do you mean does not want to exit? 19:31:21 i typed exit, hit enter, it sat there and laughed at me in silence 19:31:31 so i did it again, still nothing. eventually kill 9'd it 19:31:48 should have gotten a gdb trace of it 19:31:59 yeah 23:33:45 I was toying around a bit with different options to hack around the glibcs min version bump, but have not found a satisfying solution. 23:34:23 I'm still not sure where the symbol, "signgam", actually is being introduced. As far as I can tell we are not using any of the gamma functions that would require it being set. 23:34:39 gamma as in obscure libm stuff ? 23:34:47 yeah 23:35:17 I suppose nm -a on object files will show you what's requiring it. 23:35:21 Shows as... D IIRC ? 23:35:40 No, should be U. 23:38:56 I have hits in tx_pool and levin_notify. 23:39:43 Can't see why atm though. 23:42:16 objdump shows it used suspiciously close to poisson_distribution 23:43:39 In both. 23:44:17 I kinda remember something about this, like gamma is the CDF of hte poisson distribution of something along those lines, so it makes sense at first glance. 23:45:16 The man page says something which might help: 23:45:18 signgam: 23:45:18 _XOPEN_SOURCE 23:45:18 || /* Since glibc 2.19: */ _DEFAULT_SOURCE 23:45:18 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE 23:45:29 Not sure how much earlier than 2.19 though. 23:50:58 thanks, I was not aware of that connection. 23:57:37 that said, does someone in here know if something similar to __wrap_ semantics can be used for variables as opposed to functions? The ld manpage only mentions functions (although it states that it is possible to wrap any generic symbol), so I don't think it's possible.