Ответить на комментарий
Compiling thunderbird 2.xx (Windows)
If you ned latest version of thunderbird just follow instaructions
For Thunderbird 2.xx:
1. Take and install MozBuild system from mozilla.org
2. Download sources from mozilla.org
3. Unpack sources (mozilla dir in archive) to your c:\mozilla-build\msys directory
3. run c:\mozilla-build\start-msvc71.bat (thunderbird branch 2.xx can be compiled only with VS6 or VS 2003)
Note: If you unpacked sources to another directory set HOME variable at end of start-msvc71.batbefore bash command
For example: set HOME=c:/mozilla_sources
4. Compile:
cd /mozilla
# Setup a basic .mozconfig file (Create and edit c:\mozilla-build\msys\mozilla\.mozconfig) or just run next commands
echo 'ac_add_options --enable-application=mail' > .mozconfig # let's build Thunderbird...
echo 'mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/objdir-tb-release' >> .mozconfig # ...in this directory...
echo 'mk_add_options MOZ_MAKE_FLAGS="-j4"' >> .mozconfig # ...quickly.
# Build
make build -f client.mk