18
edits
m (s/=+/=/g (the higherarchy before was overkill)) |
|||
| Line 7: | Line 7: | ||
<small>'''Note:''' if you're building on Windows using the free tools (ie: mingw instead of Visual Studio), then you might want to follow steps 1-9 on [http://gemal.dk/mozilla/build.html Gemal's Build Mozilla on Windows] page.</small> | <small>'''Note:''' if you're building on Windows using the free tools (ie: mingw instead of Visual Studio), then you might want to follow steps 1-9 on [http://gemal.dk/mozilla/build.html Gemal's Build Mozilla on Windows] page.</small> | ||
= Quick Start = | |||
If you already have everything you need installed to build thunderbird + lightning, then these commands should work to test cvs head: | |||
<pre><nowiki> | |||
export CVSROOT=:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot | |||
cvs checkout mozilla/client.mk | |||
cd mozilla | |||
make -f client.mk checkout MOZ_CO_PROJECT=mail,calendar | |||
./configure --enable-application=mail --enable-extensions=default,lightning | |||
make | |||
./dist/bin/thunderbird | |||
# install dist/xpi-stage/lightning.xpi via the thunderbird extensions menu | |||
</nowiki></pre> | |||
If you have problems with lightning crashing thunderbird, you can disable all extensions with: | |||
<pre><nowiki> | |||
./dist/bin/thunderbird -safe-mode | |||
</nowiki></pre> | |||
= Getting the latest code from CVS = | = Getting the latest code from CVS = | ||
edits