1
edit
Changes
→Steps to Complete the build
</pre>
Problem2 – failed: connection refused (only at school’s computer)<br/>
Checkout the build script:
<pre>
C:\proj> cvs co mozilla/browser/config mozilla/client.mk
Cvs checkout: Updating mozilla/browser/config
U mozilla/client.mk
</pre>
This create some files in C:\proj\mozilla<br/>
Move into mozilla directory and create a file .mozconfig
<pre>
c:\proj\mozilla> touch .mozconfig
</pre>
open .mozconfig, copy and paste the given code(from David's website).
<pre>
# Building Firefox Trunk with Debugging
. $topsrcdir/browser/config/mozconfig
# Put all obj files in one place, not in src tree
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-objdir
ac_add_options --disable-static
ac_add_options --enable-shared
# Debug Build Setup Options
ac_add_options --disable-optimize
ac_add_options --enable-debug
# I'm using Canvas for my work
ac_add_options --enable-canvas
</pre>