navi2chの導入メモ
環境
MacOSX 10.7.2
Emacs 23.3
※ emacsインストール時のメモ
ダウンロード
git clone で持ってきます
git clone git://navi2ch.git.sourceforge.net/gitroot/navi2ch/navi2ch
インストール
./configure --with-lispdir=/Applications/Emacs.app/Contents/Resources/site-lisp/navi2ch make make install
メモ
実は最初にconfigureするときに以下のエラーがでました
$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for emacs... emacs
checking where .elc files should go... ${datadir}/emacs/site-lisp
checking detecting your emacs type... Cannot open load file: subst-ksc
configure: error: this package does not work on your emacs
環境変数EMACSにパスを設定していなかったせいみたいで、以下を設定したらconfigureできるようになりました
export EMACS=/Applications/Emacs.app/Contents/MacOS/Emacs
