* Emacs 20.7 is a bug-fix release with few user-visible changes ** It is now possible to use CCL-based coding systems for keyboard input. ** ange-ftp now handles FTP security extensions, like Kerberos. ** Rmail has been extended to recognize more forms of digest messages. ** Now, most coding systems set in keyboard coding system work not only for character input, but also in incremental search. The exceptions are such coding systems that handle 2-byte character sets (e.g euc-kr, euc-jp) and that use ISO's escape sequence (e.g. iso-2022-jp). They are ignored in incremental search. ** Support for Macintosh PowerPC-based machines running GNU/Linux has been added.澤田克也 さんによる 日本語訳もあります。(20.6 に対応しています) http://amanatto.hoops.ne.jp/emacs/news/
tar zxf emacs-20.7.tar.gz tar zxf leim-20.7.tar.gz zcat $SOMEWHERE/emcws-20.7-20020208.gz | patch -s -p0 mkdir emcws-work # 作業用の領域を用意する。(名前は何でもいい) cd emcws-work # 用意した所に移って以下の作業では wnn, canna が予め設置されていることを前提にしています。 (これらの仮名漢字変換サーバが必ずしも同じ機械で動く必要はありませんが、 library, include は make 時に, 共有 library は動作時にも必要となります)
(FreeWnn-1.1.1-a017 の場合)
../emacs-20.7/configure \
--with-wnn4 \
--with-wnn-includes=/usr/local/include/wnn \
--with-wnn-libraries=/usr/local/lib \
--with-canna \
--with-canna-includes=/usr/local/canna/include \
--with-canna-libraries=/usr/local/canna/lib \
--with-sj3 \
--with-x \
--with-x-toolkit \
--with-gcc
(FreeWnn-1.1 の場合)
../emacs-20.7/configure \
--with-wnn4 \
--with-wnn-includes=/usr/X11R6/include/wnn \
--with-wnn-libraries=/usr/X11R6/lib \
--with-canna \
--with-canna-includes=/usr/local/canna/include \
--with-canna-libraries=/usr/local/canna/lib \
--with-sj3 \
--with-x \
--with-x-toolkit \
--with-gcc
(従前の Wnn4.2 の場合)
../emacs-20.7/configure \
--with-wnn4 \
--with-wnn-includes=/usr/local/include/wnn \
--with-wnn-libraries=/usr/local/lib \
--with-canna \
--with-canna-includes=/usr/local/canna/include \
--with-canna-libraries=/usr/local/canna/lib \
--with-sj3 \
--with-x \
--with-x-toolkit \
--with-gcc
time make
ここで src/emacs で起動すると、~/.emacs によっては多分
Error in init file: File error: "Cannot open load file", "poe"
となるかも知れません。これは apel だけは 20.7 の下に入っている
必要があるからです。
もし設置 (make install) する前に動作を確認するなら、
# cd /usr/local/share/emacs/
# mkdir 20.7
# cd 20.7
# ln -s /usr/local/share/emacs/20.4/site-lisp .
などのように古いものを見るようにしておくと emu のものがそのまま
利用出来ると思います。
確認したら、上で作ったリンクを次のように消してから
rm /usr/local/share/emacs/20.7/site-lisp
make install
こうすると上記 /usr/local/share/emacs/20.7/site-lisp には
subdirs.el だけが入る。ここに apel を入れればいいが、
もし以前のものをそのまま使いたかったら、20.7 の site-lisp をよ
けて、以前のものを リンクする、つまり、
cd /usr/local/share/emacs/20.7
mv site-lisp site-lisp-20.7
ln -s ../20.5/site-lisp
などとしてしまうのも一つの方法
(emacs-version) "GNU Emacs 20.7.1 (powerpc-apple-netbsd1.4V, X toolkit, emcws) of Wed Jun 14 2000 on harry" emacs-version "20.7.1" emcws-version "20000614" (featurep 'emcws) t
最終更新 Wednesday, 12-Mar-2008 10:53:08 UTC