Erro ao tentar instalar o tmux 1.6 - E: Não é possível localizar o pacote libevent

2
$ pwd 
$ /home/durrantm/Downloads/tmux-1.6

durrantm.../tmux-1.6$ ./configure && make
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
...
...
configure: error: "libevent not found"
durrantm.../tmux-1.6$ sudo apt-get install libevent
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package libevent
    
por Michael Durrant 03.06.2012 / 16:41

1 resposta

7

Pacotes do Ubuntu 11.10 tmux 1.5. O pacote tmux requer que o libevent-2.0-5 package satisfaça seu requisito de tempo de execução. O requisito de compilação correspondente é libevent-dev .

Tente isto:

sudo apt-get install libevent-dev
    
por 04.06.2012 / 06:22