tmux中找不到“ libevent未找到”错误

问题描述 投票:45回答:2

我正在尝试在我的Scientific Linux 6.5版(Carbon)机器中安装tmux

这些是我遵循的步骤

wget http://downloads.sourceforge.net/tmux/tmux-1.9.tar.gz

tar xvzf tmux-1.9.tar.gz

cd tmux-1.9

./configure

在此步骤显示错误:

configure: error: "libevent not found" 



为了解决它,我做了以下工作:

emacs /etc/yum.repos.d/pgdg-92-sl.repo


并且添加了以下几行

[pgdg92]
name=PostgreSQL 9.2 $releasever - $basearch
baseurl=http://yum.postgresql.org/9.2/redhat/rhel-6.4-$basearch
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-92

[pgdg92-source]
name=PostgreSQL 9.2 $releasever - $basearch - Source
failovermethod=priority
baseurl=http://yum.postgresql.org/srpms/9.2/redhat/rhel-6.4-$basearch
enabled=0
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-92

然后做了:

yum install libevent



已正确安装

仍然配置错误:error: "libevent not found"未解决

提前感谢:)

linux tmux
2个回答
116
投票

如果您要构建软件,则需要开发包。安装libevent-devel

对于基于ubuntu的发行版,软件包为libevent-dev


0
投票

对于在Mac上遇到此问题的任何人,您都可以通过自制软件安装它:http://macappstore.org/libevent/ => brew install libevent

© www.soinside.com 2019 - 2024. All rights reserved.