簡體   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