|
昨天刚装上FreeBSD 5.1 release今天搞了一天的汉化。刚才才把rxvt-devel编译安装,因为rxvt不能支持freetype。不过devle有点问题,编译的时候会出现错误:
ptytty.c:50:48: sys/stropts.h: No such file or directory
我在google上搜了一把,终于解决了:)
需要改一下congiure这个文件,原文在
http://lists.freebsd.org/piperma ... 003-May/001155.html
这是我的configure文件,从14493行开始:
if test "${rxvt_cv_ptys+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if test x$ac_cv_func_openpty = xyes; then
rxvt_cv_ptys=PTC
else if test -c /dev/ptmx -a -c /dev/pts/0; then
rxvt_cv_ptys=STREAMS
else
rxvt_cv_ptys=BSD
fi
fi
fi
希望对大家有点帮助 |
|