我正在安装 apache 的步骤如下:followecho deb http://ports.ubuntu.com/ubuntu-ports 生动受限的主多元宇宙 >>/etc/apt/sources.list
apt-get install -y git\
打开ssl\
颠覆\
自动配置\
库工具\
libapr\
libapr-util\
制作\
libpcre3-dev\
libpcre++-dev\
libxml2-dev\
libexpat1-dev\
Python

git 克隆 https://github.com/apache/httpd.git

光盘 httpd

svn co http://svn.apache.org/repos/asf/apr/apr/trunk srclib/apr && cd srclib/apr && ./buildconf && ./build libtool && make && make install

./buildconf 给出的错误如下
./buildconf
找到 apr 来源:srclib/apr
重建 srclib/apr/configure
buildconf:检查安装...
buildconf:python 版本 2.7.9(确定)
buildconf: autoconf 版本 2.69 (ok)
buildconf:未找到 libtool。
您需要安装 libtool 1.4 或更高版本
从SVN构建APR。
./buildconf 失败四月

在上面,因为我已经安装了 libtool。但是找不到 libttol。当我说 apt-get install -y libtool 时,我收到的消息为 # apt-get install -y libtoo
apt-get install -y libtool
阅读包裹 list ...完成
构建依赖树
读取状态信息...完成
libtool 已经是最新版本了。
0 升级,0 新安装,0 删除,26 未升级。
W:重复的sources.list条目http://ports.ubuntu.com/ubuntu-ports/ vivid/restricted ppc64el Packages (/var/lib/apt/lists/ports.ubuntu.com_ubuntu-ports_dists_vivid_restricted_binary-ppc64el_Packages)
W:重复的sources.list条目http://ports.ubuntu.com/ubuntu-ports/ vivid/main ppc64el Packages (/var/lib/apt/lists/ports.ubuntu.com_ubuntu-ports_dists_vivid_main_binary-ppc64el_Packages)
W:您可能需要运行 apt-get update 来纠正这些问题

但是当我尝试命令时,我得到 $libtool
bash: libtool: 命令未找到
$man 库工具
bash: man: 命令未找到
$libttol --help
bash: libttol: 命令未找到
$libtool --version
bash: libtool: 命令未找到

最佳答案

在 Ubuntu 生动的 中,/usr/bin/libtoollibtool-bin 包提供,而不是由 libtool 包提供。安装 libtool-bin :

apt-get update
apt-get install -y libtool-bin

关于apache - 找不到安装 apache libtool 的错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32738777/

10-11 16:26