Adding a library to the Solaris install path

To compile VLC you will need ffmpeg which includes some missing library’s Copy / link the “.pc” of the missing library to the pkg-config directory. For example for libavformat we will need the libavformat.pc cd /usr/lib/pkgconfig ln -s /opt/SMM/ffmpeg-text/lib/pkgconfig/libavformat.pc verify it works. pkg-config –modversion libavformat To create your own “.pc” file prefix=/opt/csw exec_prefix=${prefix} libdir=${prefix}/lib includedir=${prefix}/include …

Adding a library to the Solaris install path Read More »