web-dev-qa-db-ja.com

tmuxの「libevent not found」エラー

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"は解決されません

前もって感謝します :)

39
Anand

ソフトウェアを構築しようとしている場合、開発パッケージが必要です。インストールlibevent-devel

Ubuntuベースのディストリビューションの場合、パッケージはlibevent-dev

106