Building Minimo on x86 Linux

Talk about Mozilla browsers for small devices such as PDAs and cellphones.
Post Reply
miohtama
Posts: 4
Joined: March 9th, 2005, 1:11 pm
Contact:

Building Minimo on x86 Linux

Post by miohtama »

Hi,

Since build instructions at the official minimo page are a bit incomplete and not up-to-date, I post here my own notes how to get the little lizard running. 4 hours worth of build/try/configure/rebuild/retry.

1. Don't use Mozilla trunk. You need to checkout 1.8 branch. See http://forums.mozillazine.org/viewtopic ... 69#2696769

export CVSROOT=':pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot'
cvs co -r MOZILLA_1_8_BRANCH mozilla/client.mk mozilla/minimo/config/
cp mozilla/minimo/config/mozconfig/linux_x86 mozilla/mozconfig

2. Add following options to mozilla/mozconfig

# Enable debugging
-> --disable-debug
ac_add_options --enable-debug

# Enable multithreaded building. Speeds up the build process on dual core systems)
mk_add_options MOZ_MAKE_FLAGS=-j3

# When you don't want to do system wide installation of the minimo, set this to something specific to the project
ac_add_options --with-default-mozilla-five-home=/home/moo/workspace/phoneproject/minimo/home

3. Compile it

make --f client.mk build_all

4. Launch minimo

export MOZILLA_FIVE_HOME=$YOUR_MOZILLA_CHECKOUT/dist/bin
export LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME
mozilla/dist/bin/minimo

Minimo should come up in your X session.

Please tell me if I am missing something.
whshuai
Posts: 19
Joined: May 22nd, 2007, 12:59 am

how to use plugin?

Post by whshuai »

Hi, I have compiled minimo and it can run in my x86 linux, but I found that it lacks of lost plugins. Can it use the plugins for firefox?

I have modified the mozconfig before complile. I modified disable-plugins to enable-plugins.

minimo and firefox are all based on mozilla engine, so i think minimo can use the firefox's plugins. But how to use it?

Hope someone could tell me.
whshuai
Posts: 19
Joined: May 22nd, 2007, 12:59 am

Post by whshuai »

also, I have another question, when I donwload file from web by minimo, I don't knwo where the file saved, it can't set the download location.
how to solve this matter?
User avatar
dougt
Posts: 117
Joined: November 30th, 2004, 1:31 am
Location: San Jose, CA

Post by dougt »

1) plugins are outside of the mozilla project -- we support (if enabled) NPAPI, the standard interface between plugins and a browser.
2) should be the preferences: browser.download.dir
Post Reply