Reciteword是一款中文界面的背单词软件(也称黑客背单词),功能比较强大。在Ubuntu中安装可能会遇到一些小困难,故在此说明一下。 本文介绍的是从源码编译安装的过程。 Table of Contents
1 下载及安装(转载部分)
1.1 下载程序
1.2 准备工具
1.3 黑客背单词的安装
2 遇到的编译错误
3 问题解决
1 下载及安装(转载部分)
1.1 下载程序reciteword的网站是: http://reciteword.cosoft.org.cn/reciteword/index.html
作者提供了如下几个包,请按需下载源码包:主程序源码(必须) reciteword
- 课本(重要) reciteword-books
- 词典(可选) reciteword-dicts
- 皮肤(可选) reciteword-skins-rw
- 真人发音 WyabdcRealPeopleTTS (可选,是stardict的真人语音)
1.2 准备工具
先安装编译需要的包apt-get install libesd0-dev pkg-config libgtk2.0-dev esound如果是Ubuntu 8.04版本,安装时可能会出现删除pulseaudio-esound-compat,ubuntu-desktop这两个文件,请之后再安装回去,如果不安装,进入桌面后桌面不成正常使用,我的方法是重启后按ctrl+alt+f1,进入控制台,打入以下命令:sudo apt-get install ubuntu-desktop就会安装这两个文件,www.linuxidc.com重启后正常 安装libesd0-alsa0,保证开启esd後,仍能用alsa。apt-get install libesd-alsa0启用esd,这是reciteword播放声音所必须的:(假设是gnome环境)在菜单中:系统->首选项->音效,在打开的窗口中:音效->允许软件混音(ESD)。为了使设置生效,建议你最好重新启动系统。
1.3 黑客背单词的安装
安装过程就没有什么特别的了,进入存有reciteword的文件后:tar -xvfj reciteword-*.tar.bz2cd reciteword-0.*./configure –prefix=/usrmakesudo make install
2 遇到的编译错误
ubuntu会出现这样编译出错bookfile.cpp: In function ‘gchar* rw_book_get_value(const gchar*, gchar*, gint)’:
bookfile.cpp:95: error: invalid conversion from ‘const char*’ to ‘gchar*’
bookfile.cpp: In function ‘gint rw_book_get_file_info(gchar*, gchar**, gchar**, gchar**, gchar**, gchar**, gchar**)’:
bookfile.cpp:140: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:153: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:154: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:155: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:156: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:157: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp: In function ‘BookFile* rw_book_open_file(gchar*)’:
bookfile.cpp:228: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:229: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:230: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:231: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:232: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:233: warning: deprecated conversion from string constant to ‘gchar*’
bookfile.cpp:209: warning: ignoring return value of ‘size_t fread(void*, size_t, size_t, FILE*)’, declared with attribute warn_unused_result
make[3]: *** [bookfile.o] 错误 1
make[3]:正在离开目录 `/tmp/word/reciteword-0.8.4/src"
make[2]: *** [all-recursive] 错误 1
make[2]:正在离开目录 `/tmp/word/reciteword-0.8.4/src"
make[1]: *** [all-recursive] 错误 1
make[1]:正在离开目录 `/tmp/word/reciteword-0.8.4"
make: *** [all] 错误 2
3 问题解决
bookfile.cpp:95: error: invalid conversion from ‘const char*’ to ‘gchar*根据以上错误找到 bookfile.cpp 在头文件处加上两句代码#include "bookfile.h"
#include <cstring>
#include <cstdio>
#include <sys/stat.h>
#include <fstream>
#include <string>
const gchar* str1;
const gchar* str2 = strchr(str1, "a");
再找到函数 (大概在90行里)
static gchar *
rw_book_get_value (const gchar * str1, gchar * str2,gint utf8)
-----------------------------------------------------
把原来的 tmp1 = strstr (str1, str2);
改为tmp1 = (gchar*)strstr (str1, str2);经过上面的改动 再编译即可相同问题请参考 http://gcc.gnu.org/gcc-4.4/porting_to.html访问: http://ljp.9t9t.infoAuthor: Li Junpeng <maillijunpeng@gmail.com>Date: 2010-10-30 23:34:45 CSTHTML generated by org-mode 6.21b in emacs 23Linux下的内存映射函数mmap详解及示例代码Ubuntu中校园网锐捷认证用mentohust解决版本过低问题相关资讯 Reciteword Ubuntu 10.10
- Ubuntu 10.10下月起停止更新 (03/12/2012 15:39:45)
- Ubuntu 10.10安装使用VNC (10/29/2011 13:13:05)
- 在Ubuntu 10.10上安装LAMP (07/18/2011 09:19:11)
| - Ubuntu 10.10与Fedora 14下使用scp (11/15/2011 16:03:56)
- Ubuntu 10.10用LibreOffice替换 (08/10/2011 19:53:36)
- Ubuntu 10.10同步CyanogenMod源码 (07/06/2011 17:59:10)
|
本文评论 查看全部评论 (0)