Development discussion. Logged to https://ddnet.tw/irclogs/ Connected with DDNet's IRC channel, Matrix room and GitHub repositories — IRC: #ddnet on Quakenet | Matrix: #ddnet-developer:matrix.org GitHub: https://github.com/ddnet
Between 2018-06-16 00:00:00Z and 2018-06-17 00:00:00Z
If you run 'git clone https://aur.archlinux.org/mysql-connector-c++.git' you download of files for this package base. Then you can read/double-check every file and build the package. After that, build ddnet again
11:56
(obviously, you have to install built package...)
11:57
of files -> all files
11:59
If you're building a DDNet package, consider adding mariadb and mysql-connector-c++ to depends, to avoid messing your dependency tree.
mysql-connector-c++'s PKGBUILD added verification of the signature of the source tarball for security sake, as you can see in filed 'validpgpkeys'. You will have to receive the keys and trust to build.
You can check the keys if they are MySQL Release Engineering's using the command:
gpg --list-public-keys A4A9406876FCBD3C456770C88C718D3B5072E1F5
And, finally, you can receive and trust using:
gpg --list-public-keys A4A9406876FCBD3C456770C88C718D3B5072E1F5
I have a C++ program, ProgramA, which is an executable that has a static library, LibraryB, which in turn relies on another static library (libcurl, actually) that is not compiled within my project...