I’m trying to install ‘quadrupel’, a library that relies on ffmpeg on Solaris x86.
I managed to build ffmpeg and its libraries live in /opt/gnu/lib and the includes are in /opt/gnu/include but when I try to build quadrupel, it can’t find the ffmpeg headers.
What flags/configuration is required to include those two directories in the proper search paths for libraries and includes? I’m not much of a Makefile hacker.
You can override the path by setting the environmental variable LD_LIBRARY_PATH. However I would suggest changing the system paths as well so you don’t have to change the library path for all users. This can be done using crel.
For the includes just add -I/opt/gnu/include to your CFLAGS variable.