Próba instalacji tmux na CentOS 6.x kończy się niepowodzeniem z błędem: „EVBUFFER_EOL_LF” nie zgłoszono

11

Próbowałem skompilować Tmux, wykonując następujące czynności:

yum -y install ncurses-devel libevent-devel
wget http://downloads.sourceforge.net/tmux/tmux-1.9a.tar.gz
tar -xvzf tmux-1.9a.tar.gz
cd tmux-1.9a
./configure
make

makePolecenie nie powiodło się z powodu następującego błędu:

control.c:64:47: error: ‘EVBUFFER_EOL_LF’ undeclared (first use in this function)

Oto szczegóły dotyczące zainstalowanych pakietów ncurses-devel i libevent-devel.

[root@rigel ~]# yum info ncurses-devel.x86_64 libevent-devel.x86_64
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: centosmirror.go4hosting.in
Installed Packages
Name        : libevent-devel
Arch        : x86_64
Version     : 1.4.13
Release     : 4.el6
Size        : 421 k
Repo        : installed
From repo   : base
Summary     : Header files, libraries and development documentation for libevent
URL         : http://monkey.org/~provos/libevent/
License     : BSD
Description : This package contains the static libraries documentation for libevent.
            : If you like to develop programs using libevent, you will need
            : to install libevent-devel.

Name        : ncurses-devel
Arch        : x86_64
Version     : 5.7
Release     : 3.20090208.el6
Size        : 1.7 M
Repo        : installed
From repo   : base
Summary     : Development files for the ncurses library
URL         : http://invisible-island.net/ncurses/ncurses.html
License     : MIT
Description : The header files and libraries for developing applications that use
            : the ncurses terminal handling library.
            :
            : Install the ncurses-devel package if you want to develop applications
            : which will use ncurses.

Jaki jest właściwy sposób instalacji tmux na CentOS 6.x?

Susam Pal
źródło

Odpowiedzi:

17

Problem występuje, ponieważ yum instaluje libevent w wersji 1.4, podczas gdy tmux 1.9 wymaga libevent w wersji 2.0. Rozwiązaniem jest instalacja libevent w wersji 2.0 ze źródła.

Oto kompletny zestaw poleceń do instalacji tmux od zera.

yum -y install ncurses-devel

wget https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz
tar -xvzf libevent-2.0.22-stable.tar.gz
cd libevent-2.0.22-stable
./configure
make -j 4
make install
cd ..

wget https://github.com/tmux/tmux/releases/download/2.1/tmux-2.1.tar.gz
tar -xvzf tmux-2.1.tar.gz
cd tmux-2.1
./configure LDFLAGS="-Wl,-rpath,/usr/local/lib"
make -j 4
make install

Istnieją tutaj trzy bloki poleceń.

  1. Polecenie yum instaluje pakiet ncurses-devel (jeśli nie jest jeszcze obecny) wymagany do kompilacji tmux.
  2. Następnie kompilujemy libevent w wersji 2.0 ze źródła i instalujemy go.
  3. Następnie kompilujemy Tmux w wersji 2.1 ze źródła i instalujemy go. Czyniąc tak, mamy pewność, że możemy połączyć tmux do libevent że zainstalowane w katalogu / usr / local / lib, inaczej by się ten błąd: tmux: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory.

Na koniec wykonaj tmuxpolecenie, aby uruchomić tmux.

Susam Pal
źródło
6
Konfiguracja tmux też je akceptuje: eksportuj LIBEVENT_CFLAGS = "- I / usr / local / include" eksportuj LIBEVENT_LIBS = "- L / usr / local / lib -Wl, -rpath = / usr / local / lib -levent" Ścieżka będzie wykluczać zmiana LD_LIBRAY_PATH, która jest wygodniejsza dla innych użytkowników w twoim systemie.
Ajith Antony
Uwaga dla Googlersów: Z powodzeniem wykorzystałem to również w starożytnym Centos 5.
Tyr
7

Zainstaluj libevent 2 -devel instant libevent-devel

na mojej 64-bitowej maszynie:

yum install libevent2-devel.x86_64

Jeśli masz już zainstalowany program libevent-devel, najpierw go odinstaluj.

kijeong
źródło
1

Konfiguracja i make rozpoczął pracę po tym, jak wykonywane:

sudo yum erase libevent-devel

sudo yum install libevent2-devel

Zauważ, że pierwsza usuwa starą wersję ( 1 ), a druga zawiera wyraźne „2”. Również typ maszyny jest na szczęście rozwiązywany automatycznie.

Jordan Gee
źródło