ここから本文です
CentOSにEmacs24.5をインストール
CentOSに入っていたEmacsが古かったので、新しいやつをインストールしました。
wget http://core.ring.gr.jp/pub/GNU/emacs/emacs-24.5.tar.gz tar xvzf emacs-24.5.tar.gz cd emacs-24.5 ./configure --without-x
僕はここで、tputがないよ、とエラーが出ました。
configure: error: The required function `tputs' was not found in any library. The following libraries were tried (in order): libtinfo, libncurses, libterminfo, libtermcap, libcurses Please try installing whichever of these libraries is most appropriate for your system, together with its header files. For example, a libncurses-dev(el) or similar package.
いろいろしらべて、ncurses-develというやつを入れたらconfigureできました。
sudo yum install ncurses-devel
あらためてconfigureしたのちに、
make make install
でインストールできました。