繁体   English   中英

configure:error:安装recordmydesktop-0.3.8.1时找不到libvorbis

[英]configure: error: Can't find libvorbis while installing recordmydesktop-0.3.8.1

我正在尝试在rhel6.4 x86_64下安装recordmydesktop-0.3.8.1。 在运行./configure时出现以下错误消息:configure:error:找不到libvorbis但我的/ usr / lib目录下有libvorbisfile.so.X文件。 头文件codec.h,vorbisenc.h和vorbisfile.h也存在于我的/ usr / include / vorbis目录中。 你能帮忙解决这个问题吗?

我在安装recordMyDesktop时遇到了同样的问题。 我找到了一个简单的解决方 我安装了libvorbis:

sudo apt-get install libvorbis-dev

如果它还要求其他包,只需将包名称添加为以下模式:

sudo apt-get install lib[library-name]-dev

卸载现有的libvorbis并尝试以下步骤重新安装。

cd /opt

wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.gz

tar xzvf libvorbis-1.3.4.tar.gz

cd libvorbis-1.3.4

./configure --prefix="$HOME/ffmpeg_build" --with-ogg="$HOME/ffmpeg_build" --disable-shared

make

make install

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM