Eugenio Pérez
Eugenio Pérez
This way, rd_calloc_struct can be called with variadic arguments, so it can be intercepted with tests tools. This change is NOT ABI backwards compatible: apps using library needs to be...
If `configure` script is called with `--bootstrap` option, and proper instructions are added to build dep, it will be automatically downloaded & built under `vendor` folder. For example, to build...
Only *.cpp object files are building using $(CXX). Should Makefile.base add a $(BIN_CPP) target? Maybe do the final phase with $(LD)?
Currently, mklove skips checks if the library is found via pkg-config. In particular, I'm trying to check that a library has a specific version, or if it has a specific...
If I call ./configure this way: ``` CPPFLAGS='-I/path/1 -I/path/2' ./configure ``` Configure script adds the two path properly. However, if I do it this way: ``` ./configure --CPPFLAGS='-I/path/1 -I/path/2' ```...
Currently, gitversion variable is only updated when you do './configure'. This could have issues if you do something like: ``` git pull; make ``` So the code will contain the...