当前位置: 代码迷 >> 综合 >> Openoffice fedora/linux build
  详细解决方案

Openoffice fedora/linux build

热度:19   发布时间:2024-01-10 10:51:10.0

在linux,具体点fedora下,进行openoffice开发。

1. 下载源码

参照http://wiki.services.openoffice.org/wiki/Documentation/Building_Guide/Getting_the_source

使用svn在线获取,用如下命令:

svn checkout svn://svn.services.openoffice.org/ooo/tags/DEV300_mXX/

2. 安装必需的软件,参照Building on Linux页面

http://wiki.services.openoffice.org/wiki/Documentation/Building_Guide/Building_on_Linux

中的software requirements ,这部分比较麻烦,要一个个手动把各软件装上。

另外可以参照Fedora Build Instructions页面,

http://wiki.services.openoffice.org/wiki/Fedora_Build_Instructions

针对fedora系统给出了更加明确的命令。
这个命令可以把需要的都装上:
yum install tcsh perl-Archive-Zip gcc gcc-c++ cups-devel /
pam-devel java-1.6.0-openjdk-devel gperf freetype-devel /
gtk2-devel libIDL-devel libXaw-devel bison patch GConf2-devel /
gnome-vfs2-devel ant make


或者参照http://zenit.senecac.on.ca/wiki/index.php/OOo_Fedora_Build 页面,有更详细的yum指令告诉你如何装各种缺乏的软件。

3. 安装过程中要设置些环境变量,比如JAVA_HOME等。可参照

http://www.lampchina.net/article/htmls/200609/MjI4OTc3.html

 

 

4.  在Dev300_mxx目录下

./configure --with-use-shell=bash --disable-mozilla --without-junit --disable-odk

5. source LinuxX86Env.Set.sh

6. ./bootstrap

7. cd instsetoo_native && build --all



 

  相关解决方案