Results 67 comments of Omar Polo

Hello, Can you please make sure gmid was actually rebuild after changing `sandbox.c`? Just to be sure, please do a $ make clean $ make $ make TESTS=test_static_files regress after...

Oh, another thing you can do is to use strace on the server process. I remember trying to debug a seccomp issue last year and spent a lot of time...

Well, it's starting to get interesting! First of, make sure you're building with debug symbols. Run `CFLAGS='-O0 -g' ./configure` or edit Makefile.local and change the -O2 to -O0 -g. -O0...

@heitumo nope. I was about to update the OpenBSD tdlib package (currently at 1.8.4) when I saw that 1.8.6 broke td. Haven't tried with newer versions yet.

@heitumo yes, with tg 0.19 and tdlib 1.8.4 i can login and it works. ``` % pkg_info | egrep '^(tg|tdlib|py3-telegram)-' py3-telegram-0.15.0p0 Python wrapper for Telegram tdlib tdlib-1.8.4p0 cross-platform library for...

Could it be since `size_t`/`ssize_t` are `long` typedef'd on OpenBSD/amd64? ``` % grep -R typedef /usr/include | grep size_t [...] amd64/_types.h:typedef unsigned long __size_t; amd64/_types.h:typedef long __ssize_t; ``` if so,...

@nbonfils our libc doesn't seem to have quick_exit, I've locally replaced it with `_exit` instead (seems safe seeing how it is used.) (btw, I should be able to send a...

sorry for the delay. unfortunately -DNEED_LONG_INT doesn't seem to fix the build on OpenBSD :( I'm not sure what I did months ago, but now it fails with: ``` ./core/variant/callable.h:78:43:...