简体   繁体   English

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

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

I'm trying to install recordmydesktop-0.3.8.1 under rhel6.4 x86_64. 我正在尝试在rhel6.4 x86_64下安装recordmydesktop-0.3.8.1。 while running ./configure I get the following error message: configure: error: Can't find libvorbis But I have libvorbisfile.so.X files under my /usr/lib directory. 在运行./configure时出现以下错误消息:configure:error:找不到libvorbis但我的/ usr / lib目录下有libvorbisfile.so.X文件。 The headers codec.h, vorbisenc.h and vorbisfile.h also exists in my /usr/include/vorbis directory. 头文件codec.h,vorbisenc.h和vorbisfile.h也存在于我的/ usr / include / vorbis目录中。 Could you help to resolve this issue please? 你能帮忙解决这个问题吗?

I had the same problem while installing recordMyDesktop. 我在安装recordMyDesktop时遇到了同样的问题。 I found a simple solution. 我找到了一个简单的解决方 I installed libvorbis: 我安装了libvorbis:

sudo apt-get install libvorbis-dev

If it also asks for other packages simply add the package name as following pattern: 如果它还要求其他包,只需将包名称添加为以下模式:

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

Uninstall existing libvorbis and try below steps to re-install. 卸载现有的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