Eric Curtin
Eric Curtin
Without copyrighted stuff obviously
:+1: I would use this library if it contained SMTP client support
That sounds like a good first step... Maybe a few helper functions or classes after we translate that example to cURLpp
Will certainly look into it @tatsuhiro-t thanks. Curious to see if there is any significant performance difference between plaintext tcp vs ngtcp2 without encryption. Have you done any benchmarks yourself?
Worked fine for me, steps that I took for centos7, these are all as root, not ideal, but just to give you an idea. centos7's packages are a bit old...
I guess you are right. It would be hand-holding. Ah I was just thinking to highlight the: ``` export SQLITE_LIBS=/usr/lib/libsqlite3.so export SQLITE_CFLAGS=$SQLITE_LIBS export UV_LIBS=/usr/lib/libuv.so export UV_CFLAGS=$UV_LIBS export RAFT_LIBS=/usr/lib/libraft.so export RAFT_CFLAGS=$RAFT_LIBS...
If we leave out the env vars in the above you get this: ``` configure: error: Package requirements (sqlite3 >= 3.22.0) were not met: No package 'sqlite3' found Consider adjusting...
Simply doing this: `mv /usr/lib/pkgconfig/*.pc /usr/lib64/pkgconfig/` gets you past the `configure` part but you fail at the `make` step of dqlite: ``` In file included from src/conn.c:1:0: src/conn.h:8:21: fatal error:...
This works as an alternative to the env vars. The two `mv` commands at the right time make the difference: ``` yum install -y git autoconf automake libtool make cd...
Ran the following: ``` #!/bin/bash for i in $(find . -name "*.c" -o -name "*.h" | xargs grep __ | tr -cs '[:alnum:]_(#' '\n' | grep __ | sort |...