step 1)
下载 emacs-21.4 , 下载地址自己搜索。
step 2)
下载并安装 gcc , 建议的 gcc 版本是 3.3.1 。
如何安装,请搜索本论坛。
step 3)
展开 emacs-21.4 源码包。
step 4)
在 emacs 源码目录下,创建编译目录
$ mkdir objdir
step 5)
配置编译选项,自动生成 Makefile 文件。
$ ./configure --prefix=/usr \\
--with-gcc \\
--without-pop \\
--with-kerberos \\
--with-kerberos5 \\
--with-hesiod \\
--with-pxm \\
--with-jpeg \\
--with-tiff \\
--with-gif \\
--with-png \\
--without-xim \\
--enable-largefile \\
--with-x \\
--libdir=/usr/gnu/lib \\
--includedir=/usr/gnu/include
( 俺的 gcc-3.3.1 是安装到 /usr/gnu 目录下的,同时安装的软件包还有 m4、bison 、 autoconf 、 automake 、 make-3.8.1 等软件包,这些包都是为了执行 ./configure 时不至于报错)
step 6)
修改生成的 Makefile 文件,相关内容。
将其中的 LIBS = -L/usr/lib 修改成 -L/usr/gnu/lib
step 7)
修改代码 src/strftime.c 文件,在其最后将被注释掉的 int mbsinit 函数打开,同时修改该函数的如下语句。
return ps==NULL || ps->count==0;
为 return ps==NULL ;
step 8)
编译并安装
$ gmake
# gmake install
阅读(1253) | 评论(0) | 转发(0) |