วิธีการติดตั้ง tmux จากแหล่งที่มา?


12

ฉันดาวน์โหลดtmuxแล้วและพยายามติดตั้งบน 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

คำตอบ:


13

ข้อผิดพลาดจะบอกคุณว่าคุณไม่มีไฟล์ส่วนหัว event.h อาจเป็นส่วนหนึ่งของ libevent

เพื่อให้สามารถรวบรวมโปรแกรมคุณจะต้องติดตั้งการพึ่งพาทั้งหมดก่อน (รวมถึงส่วนหัว, แพ็คเกจ -dev) ในเว็บเพจ tmux พวกเขาบอกว่ามันขึ้นอยู่กับ libevent และ ncurses ดังนั้นคำสั่งนี้จะติดตั้งสิ่งที่คุณต้องการ (ไม่ผ่านการทดสอบ):

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

แต่ถ้าคุณต้องการถามสิ่งนี้คุณไม่ควรรวบรวมสิ่งต่าง ๆ จากแหล่งที่มาเว้นแต่ว่าคุณกำลังทำเพื่อเรียนรู้เพียงเพื่อความสนุกสนานหรือมีวันที่แย่มาก;)


5
หรือเนื่องจากมันอยู่ในไฟล์เก็บถาวรคุณสามารถขอติดตั้ง build-dependencies ได้โดยตรง:sudo apt-get build-dep tmux
Kees Cook
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.