Instalar tmux en Ubuntu desde la fuente


3

He descargado tmux y estoy intentando instalarlo en 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

Respuestas:


8

event.h se encuentra en el libevent-devpaquete.

apt-get install libevent-dev

Por cierto, ¿puedes usar el tmuxpaquete Ubuntu?


Gracias, eso funcionó. El paquete tmux que viene con Ubuntu es bastante antiguo (1.1 vs. 1.3), y ha habido muchas características nuevas y correcciones de errores en el ínterin.
uno mismo

Esto funcionó muy bien. Deseo que tmux agregue esta nota en su página de instalación / léame. Me doy cuenta de que mencionan liberante, pero sería bueno si solo hicieran un pequeño grito de ubuntu.
cwd

0

tmux.h: 30: 19: error: event.h: No existe tal archivo o directorio

Use apt para averiguar qué *-devpaquete contiene event.h.

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.