jwpwh
jwpwh
My current theory is that the linux vm I am using as the host for the cross-compile does not have dbus-1 installed and this is causing the issues. As I...
Success!! When building D-Bus add one additional argument to the ./configure: ``` ./configure --host=arm-linux-gnueabihf --prefix=${RPI_LIBS} \ CPPFLAGS=-I${RPI_LIBS}/include \ LDFLAGS=-L${RPI_LIBS}/lib \ EXPAT_CFLAGS=" " \ EXPAT_LIBS=-lexpat \ --with-system-socket=/var/run/dbus/system_bus_socket ``` When building Avahi,...
For what it is worth: The version of Dbus installed on the Raspberry Pi is 1.12.16 and the instructions here grab the source for 1.12.8. I think the main part...