Jak zainstalować Tmux ze źródła?

12

Mam pobierania tmux i staram się go zainstalować na Ubuntu 10.04.

$ ./configure 
Configured for Linux
$ make
cc -DBUILD="\"1.3\"" -std=c99 -D_GNU_SOURCE -D_POSIX_SOURCE -iquote.   -c -o attributes.o attributes.c
In file included from attributes.c:23:
tmux.h:30:19: error: event.h: No such file or directory
In file included from attributes.c:23:
tmux.h:831: error: field ‘name_timer’ has incomplete type
tmux.h:1025: error: field ‘key_timer’ has incomplete type
tmux.h:1086: error: field ‘event’ has incomplete type
tmux.h:1102: error: field ‘repeat_timer’ has incomplete type
tmux.h:1122: error: field ‘identify_timer’ has incomplete type
tmux.h:1125: error: field ‘message_timer’ has incomplete type
make: *** [attributes.o] Error 1
się
źródło

Odpowiedzi:

13

Błąd informuje, że brakuje pliku nagłówka event.h, prawdopodobnie jest to część libevent.

Aby móc skompilować program, musisz najpierw zainstalować wszystkie jego zależności (w tym nagłówki, pakiety -dev). Na stronie tmux mówią, że to zależy od libevent i ncurses. Więc to polecenie prawdopodobnie zainstaluje wszystko, czego potrzebujesz (nie przetestowano):

sudo apt-get install libevent-1.4 libevent-dev libncurses5-dev

Ale jeśli musisz o to zapytać, prawdopodobnie nie powinieneś kompilować rzeczy ze źródła, chyba że robisz to, aby się uczyć, dla zabawy lub po prostu mając okropny dzień;).

Javier Rivera
źródło
5
Lub, ponieważ jest już w archiwum, możesz po prostu poprosić o instalację zależności kompilacji bezpośrednio:sudo apt-get build-dep tmux
Kees Cook