Hi Josh! 2012/7/30 Josh <[email protected]>: > hi all, > I'm trying to compile liquidsoap on CentOS6.3, and am getting the following > error when running ./configure. > checking whether pkg-config knows about vorbis... configure: error: > vorbis.pc not found.. Do you need to set PKG_CONFIG_PATH? > I have compiled libvorbis from source, so it is installed. > can anyone please help?
You should inspect how and what was installed with libvorbis. Usually, the install comes with a vorbis.pc file installed somewhere in your system. You can check at least those locations: * /usr/lib/pkgconfig * /usr/local/lib/pkgconfig And probably other places. Once you have this figured out, you can set: export PKG_CONFIG_PATH=/path/to/pc/file Another way to test is to call pkg-config directly: toots@zulu % pkg-config --libs vorbis -L/usr/local/Cellar/libvorbis/1.3.3/lib -L/usr/local/Cellar/libogg/1.3.0/lib -lvorbis -lm -logg Hope this helps, Romain ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Savonet-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/savonet-users
