|
|

楼主 |
发表于 2006-8-3 12:02:51
|
显示全部楼层
mozilla splash (Picture startup during starting of Mozilla)
项目目的:
splash 译作飞溅屏幕,即启动程序时显示的画面,包括程序的logo及版本开发作者等等。
具体操作过程:
1.3.1 解决mozilla包的依赖关系
apt-get build-dep mozilla
1.3.2 下载并生成源码包:
apt-get update
apt-get -b source mozilla
mozilla-1.7.13/build-tree/mozilla目录即为mozilla源码。
1.3.3 更改splash图片:
图片位置在xpfe/bootstrap/,你可以找一张mozilla的splash图片用gimp软件转成splash.xpm,覆盖掉原来的splash.xpm。
1.3.4 编译安装mozilla
参考网站:http://lfs.phayoune.org/blfs/vie ... aphweb.html#mozilla
export MOZILLA_OFFICIAL="1"
export BUILD_OFFICIAL="1"
export MOZ_CO_PROJECT="suite"
./configure --prefix=/usr \
--with-default-mozilla-five-home=/usr/lib/mozilla \
--with-system-zlib \
--with-system-png \
--enable-application=suite \
--enable-default-toolkit=gtk2 \
--enable-extensions=all \
--enable-crypto \
--enable-xft \
--enable-xinerama \
--enable-optimize \
--enable-reorder \
--enable-strip \
--enable-cpp-rtti \
--enable-calendar \
--disable-freetype2 \
--disable-accessibility \
--disable-debug \
--disable-tests \
--disable-logging \
--disable-pedantic \
--disable-installer
(You should add the --with-system-jpeg switch to the configure script if you have libjpeg installed.)
make
make install
unset MOZILLA_OFFICIAL
unset BUILD_OFFICIAL
unset MOZ_CO_PROJECT |
|