I get the following when doing ./waf configure …:
Checking for ‘lrdf’ >= 0.4.0 : not found
It’s not something that stops the config from moving along, and in the past, I’ve skipped it, or done little, but to no avail.
I’m trying to log the least steps to proceed with the configuration successfully using MSYS2 MINGW64, with one column for what’s mandatory (config stops if it finds a certain error) and another for what’s not mandatory (config proceeds anyways). I’ve even managed to get a few lines of code to get the pa_asio.h header which wasn’t mandatory. But for lrdf? No success yet.
I’ve run the following code:
curl -L -o lrdf-0.6.1.tar.gz
https://github.com/swh/LRDF/archive/refs/tags/v0.6.1.tar.gz
tar xf lrdf-0.6.1.tar.gz
cd LRDF-0.6.1
pacman -S mingw-w64-x86_64-libtool
pacman -S m4
pacman -S mingw-w64-x86_64-autotools
./autogen.sh
During that last one, I get an error:
checking for raptor2 >= 2.0.0… no
configure: error: Package requirements (raptor2 >= 2.0.0) were not met:
Package ‘raptor2’ not found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
I then failed to install raptor2 (2.0.16 version), to assist in installing lrdf.
Any ideas on how to actually have the lrdf? If I’m on the right path, how do I install raptor2?