hey, i am running freebsd and i?ve got the following problem with installing icecast 2.3.1. (libxslt-1.1.0 and libogg 1.1.3 is installed) but when i am trying to install libvorbis 1.1.3 i always get this message: >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Package ogg was not found in the pkg-config search path. Perhaps you should add the directory containing `ogg.pc' to the PKG_CONFIG_PATH environment variable No package 'ogg' found checking for Ogg... no *** Could not run Ogg test program, checking why... *** The test program failed to compile or link. See the file config.log for the *** exact error that occured. This usually means Ogg was incorrectly installed *** or that you have moved Ogg since it was installed. In the latter case, you *** may want to edit the ogg-config script: configure: error: must have Ogg installed! >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> i already added /usr/local/lib in my ld.so.conf but without any results. thanks in advance for any advices...
On Mon, 17 Jul 2006, Marton wrote:> Package ogg was not found in the pkg-config search path.<< >>> i already added /usr/local/lib in my ld.so.conf but without any results.Run ldconfig as root with no flags. -- Robert Muchnick Xenterra.net 720-276-7917
Marton wrote:> hey, > > i am running freebsd and i?ve got the following problem with installing > icecast 2.3.1. > (libxslt-1.1.0 and libogg 1.1.3 is installed) but when i am trying to > install libvorbis 1.1.3 i always get this message: > >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> > Package ogg was not found in the pkg-config search path. > Perhaps you should add the directory containing `ogg.pc' > to the PKG_CONFIG_PATH environment variableprefix=/usr/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: ogg Description: ogg is a library for manipulating ogg bitstreams Version: 1.1.3 Requires: Conflicts: Libs: -L${libdir} -logg Cflags: -I${includedir} On OpenBSD it is in /usr/local/lib/pkgconfig. Add this file and you should be good to go. Regards, Michael Here are the contents of file 'ogg.pc':
Michael Grigoni wrote:>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >> Package ogg was not found in the pkg-config search path. >> Perhaps you should add the directory containing `ogg.pc' >> to the PKG_CONFIG_PATH environment variableMy previous post was somehow mangled: Here is the contents of /usr/local/lib/pkgconfig/ogg.pc: ---------------------<snip this line>------------------- prefix=/usr/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: ogg Description: ogg is a library for manipulating ogg bitstreams Version: 1.1.3 Requires: Conflicts: Libs: -L${libdir} -logg Cflags: -I${includedir} ---------------------<snip this line>------------------- Regards, Michael