ソースから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 Webページでは、libeventとncursesに依存していると言われています。したがって、このコマンドは必要なものをすべてインストールする可能性があります(テストされていません)。

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

しかし、これを尋ねる必要がある場合、学習のために、楽しみのために、またはひどい一日を過ごすためにそれをしているのでなければ、おそらくソースから物をコンパイルするべきではありません;)。


5
それとも、それはすでにアーカイブにあるので、あなただけの直接ビルド依存関係をインストールすることを要求することができる:sudo apt-get build-dep tmux
キースクック
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.