$ tar xvfz emacs-20.6.tar.gz $ tar xvfz leim-20.6.tar.gz $ cd emacs-20.6 |
$ ./configure (snip) Configured for `i586-pc-linux-gnu'. Where should the build process find the source code? /usr/local/src/emacs-20.6 What operating system and machine description files should Emacs use? `s/gnu-linux.h' and `m/intel386.h' What compiler should emacs be built with? gcc -g -O Should Emacs use the GNU version of malloc? yes (Using Doug Lea's new malloc from the GNU C Library.) Should Emacs use the relocating allocator for buffers? yes What window system should Emacs use? x11 What toolkit should Emacs use? LUCID Where do we find X Windows header files? /usr/X11R6/include Where do we find X Windows libraries? /usr/X11R6/lib (snip) |
$ make $ make install |
$ cp yc.el-2.0.15 /usr/local/share/emacs/site-lisp $ cd /usr/local/share/emacs/site-lisp $ ln -s yc.el-2.0.15 yc.el |
$ tar xvfz emacs-20.7.tar.gz $ tar xvfz leim-20.7.tar.gz $ cd emacs-20.7 $ patch -p1 < emacs-20.7-mule-4.1.patch $ ./configure $ cd src $ make emacs $ cd ../lisp $ ../src/emacs -batch -q -f batch-byte-compile ange-ftp.el international/ccl.el international/mule-cmds.el international/mule.el international/titdic-cnv.el $ cd .. $ make $ su # make install # exit |
$ tar xvfz emacs-20.7.tar.gz $ tar xvfz leim-20.7.tar.gz $ zcat emcws-20.7-20000614.gz | patch -s -p0 $ mkdir emcws-work $ cd emcws-work |
$ ../emacs-20.7/./configure --with-canna --with-canna-include=/usr/local/canna/include \ --with-canna-libraries=/usr/local/canna/lib $ time make Received disconnect: Command terminated on signal 10. |
$ make (snip) gcc -c -Demacs -DHAVE_CONFIG_H -DUSE_LUCID -I. -I/home1/local/src/emacs-20.7/src -I/usr/openwin/include -I/usr/dt/include -g -O /home1/local/src/emacs-20.7/src/canna.c /home1/local/src/emacs-20.7/src/canna.c:159: canna/jrkanji.h: No such file or directory /home1/local/src/emacs-20.7/src/canna.c:160: canna/RK.h: No such file or directory make[1]: *** [canna.o] Error 1 make[1]: Leaving directory `/home1/local/src/emcws-work/src' make: *** [src] Error 2 |
(snip) CC=gcc CPP=gcc -E C_SWITCH_SYSTEM= ALLOCA= LN_S=ln -s CFLAGS= -g -O -I/usr/local/canna/include ~~~~~~~~~~~~~~~~~~~~~~~~~~ 追加 LDFLAGS= -L/usr/openwin/lib (snip) |
$ make $ su # make install # exit |
$ tar xvfz emacs-20.7.tar.gz $ tar xvfz leim-20.7.tar.gz $ cd emacs-20.7 $ patch -p1 < emacs-20.7-mule-4.1.patch $ cd .. $ zcat emcws-20.7-20000614.gz | patch -s -p0 $ mkdir emcws-work $ cd emcws-work $ ../emacs-20.7/./configure --with-canna --with-canna-include=/usr/include --with-canna-libraries=/usr/lib $ make (snip) ./temacs -batch -l loadup dump (snip) Loading international/latin-1 (source)... Loading international/latin-2 (source)... Loading international/latin-3 (source)... Loading international/latin-4 (source)... Loading international/latin-5 (source)... Loading language/chinese... Loading language/cyrillic... Cannot open load file: ccl make[1]: *** [emacs] Error 255 make[1]: Leaving directory `/usr/local/src/emcws-work/src' make: *** [src] Error 2 |