cclive是从YouTube和类似网站下载媒体的工具。
我正在尝试编译cclive的最新版本,但无法编译第一步利布奎维。
当我这样做时,我会得到以下错误.
> sudo sh autogen.sh
Generate configuration files...
configure.ac:92: warning: macro `AM_ICONV' not found in library
configure.ac:36: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body
...
configure.ac:92: error: possibly undefined macro: AM_ICONV
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
autoreconf: /usr/local/bin/autoconf failed with exit status: 1全输出
也许我遗漏了一些依赖关系什么的?
发布于 2011-08-05 12:33:18
好的,要编译libquvi,您需要执行以下操作:
从http://quvi.sourceforge.net下载quvi的最新版本
安装一些必要的软件包:
sudo apt-get install libcurl4-gnutls-dev libpcre++-dev libtolua++5.1-dev现在解压缩您下载的包。
cd ~/Downloads
tar -xvf <package name>
cd quvi-<version>现在运行.configure
./configure --prefix=/usr --enable-nsfw --enable-broken现在编译并安装deb
make
sudo checkinstall -D也就是说,检查将指导您通过创建deb和安装过程-只需按回车到所有的问题。
好的,要编译cclive,您需要执行以下操作:
从http://cclive.googlecode.com下载cclive的最新版本
安装一些必要的软件包:
sudo apt-get install libboost-dev libboost-graph-dev libboost-iostreams-dev libboost-date-time-dev libboost-program-options-dev libboost-system-dev libboost-filesystem-dev现在解压缩您下载的包。
cd ~/Downloads
tar -xvf <package name>
cd cclive-<version>现在运行.configure
./configure现在编译并安装deb
make
sudo checkinstall -Dhttps://askubuntu.com/questions/55213
复制相似问题