mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
4c301a7008
the new mac/win instructions are added.
159 lines
4.3 KiB
HTML
159 lines
4.3 KiB
HTML
<HTML>
|
|
<HEAD>
|
|
<TITLE>Building Mozilla on unix platforms</TITLE>
|
|
</HEAD>
|
|
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000EE" VLINK="#551A8B"
|
|
ALINK="#FF0000">
|
|
<HR>
|
|
<H1>
|
|
Building Mozilla on Unix platforms</H1>
|
|
|
|
<H2>
|
|
Daniel Nunes, <TT><A HREF="mailto:leaf@netscape.com">leaf@netscape.com</A></TT></H2>
|
|
v 1.1, June 1998
|
|
|
|
<P>
|
|
<HR><I>How to build Mozilla on a Unix System.</I>
|
|
<HR>
|
|
<H2>1. <A HREF="#s1">Introduction</A></H2>
|
|
|
|
<H2>2. <A HREF="#s2">Building Mozilla</A></H2>
|
|
|
|
<UL>
|
|
<LI>
|
|
<A HREF="#ss2.1">2.1 Get the Code </A></LI>
|
|
|
|
<LI>
|
|
<A HREF="#ss2.2">2.2 Requirements</A></LI>
|
|
|
|
<LI>
|
|
<A HREF="#ss2.3">2.3 Set up the Build Environment</A></LI>
|
|
|
|
<LI>
|
|
<A HREF="#ss2.4">2.4 Build the Lizard </A></LI>
|
|
|
|
<LI>
|
|
<A HREF="#ss2.5">2.5 Run the Lizard </A></LI>
|
|
</UL>
|
|
|
|
<H2>3. <A HREF="#s3"> Common Problems </A></H2>
|
|
|
|
<HR>
|
|
<H2><A NAME="s1">1. Introduction</A></H2>
|
|
|
|
<P>
|
|
What this document is: A guide to building the Mozilla application.
|
|
<BR>
|
|
This includes:
|
|
<OL>
|
|
<LI> A listing of the development tools you will need to build Mozilla. </LI>
|
|
<LI> A list of environment variables you will need to set before building. </LI>
|
|
</OL>
|
|
<P>
|
|
If you're looking for documentation on developing features or fixing bugs,
|
|
the Mozilla
|
|
<A HREF="http://www.mozilla.org/docs/tplist/tplist.html">Technical Documents
|
|
</A> or <A HREF="http://www.mozilla.org/library.html"> Library </A>
|
|
are probably what you're looking for.
|
|
<P>
|
|
<HR>
|
|
<H2><A NAME="s2">2. Building Mozilla </A></H2>
|
|
<P>
|
|
<UL>Each of the following subsections describes, or gives references to
|
|
descriptions of, the steps necessary to build Mozilla.
|
|
</UL>
|
|
<H2><A NAME="ss2.1">2.1 Get the Code</A></H2>
|
|
<P>
|
|
<UL>
|
|
There are two principal ways of getting the code,
|
|
<A HREF="http://www.mozilla.org/download.html"> ftp</A> and
|
|
<A HREF="http://www.mozilla.org/cvs.html"> CVS</A>.
|
|
CVS will provide the most current code for building, but is
|
|
slower than ftp. Ftp drops are generally produced once per month,
|
|
and are known to compile.
|
|
</UL>
|
|
<P>
|
|
<H2><A NAME="ss2.2">2.2 Requirements</A></H2>
|
|
<UL>
|
|
The following should be installed:
|
|
<UL>
|
|
<LI>Motif 1.2
|
|
<LI>The native C/C++ compiler (or GNU C/C++ compiler 2.7.2 in lieu of the
|
|
native compiler)
|
|
<LI>GNU make 3.74 or better
|
|
<LI>Perl (or, if you have no Perl, then set <CODE>PERL=/bin/echo</CODE>)
|
|
</UL>
|
|
<P>
|
|
Your hardware should be equal to, or better than:
|
|
<UL>
|
|
32 MB RAM, 128 MB swap (64 MB RAM recommended)
|
|
</UL>
|
|
</UL>
|
|
<P>
|
|
<H2><A NAME="ss2.3">2.3 Setup the Build Environment</A></H2>
|
|
<P>
|
|
<UL>
|
|
The following environment variables need to be set:
|
|
<CODE>
|
|
<PRE>
|
|
MOZILLA_CLIENT=1
|
|
MOZ_MEDIUM=1
|
|
NO_MDUPDATE=1
|
|
</PRE>
|
|
</CODE>
|
|
Optionally, you can set <CODE>BUILD_OPT=1</CODE> if you don't want a debug
|
|
build.
|
|
<P>
|
|
If your Motif libraries are installed in a non-standard place, you can tell
|
|
the Mozilla makefiles where to look by setting
|
|
<CODE>MOZILLA_MOTIF_SEARCH_PATH</CODE> to point to the directory in which
|
|
your Motif installation resides.
|
|
<P>
|
|
Environment variables are set by the shell, and there are two common ways
|
|
of setting them. <BR>
|
|
Type <CODE>setenv VARIABLE value</CODE> or <CODE>export VARIABLE=value</CODE>.
|
|
<P>
|
|
</UL>
|
|
|
|
<H2><A NAME="ss2.4">2.4 Run the build </A></H2>
|
|
<UL>
|
|
Change to the directory you copied the source into (for example,
|
|
<CODE>cd /builds</CODE>). If this directory was empty before you
|
|
installed the source, there should be two directories here:
|
|
<CODE>README</CODE> and <CODE>mozilla</CODE>.
|
|
<CODE>
|
|
<PRE>
|
|
cd mozilla
|
|
gmake
|
|
</PRE>
|
|
</CODE>
|
|
</UL>
|
|
<H2><A NAME="ss2.5">2.5 After the build </A></H2>
|
|
<UL>
|
|
You may notice that if you try running mozilla-export right after the build,
|
|
you'll run into a problem. You need to set <CODE>LD_LIBRARY_PATH</CODE> to
|
|
<CODE>
|
|
${LD_LIBRARY_PATH}:/PATH_TO_SOURCE/mozilla/dist/Linux2.0.32_x86_OPT.OBJ/bin
|
|
</CODE> (where <CODE>PATH_TO_SOURCE</CODE> is the full path to your source
|
|
tree) before the dynamically linked binary will run. <BR><BR>
|
|
This varies by platform:<br>
|
|
<UL>
|
|
<LI>On HP-UX, the equivalent environment variable is <CODE>SHLIB_PATH</CODE>.
|
|
<LI>On AIX, the equivalent environment variable is <CODE>LIBPATH</CODE>.
|
|
</UL>
|
|
</UL>
|
|
|
|
<HR>
|
|
<H2><A NAME="s3">3. Common Sticking Points</A></H2>
|
|
<LI>My linker dies with this error: undefined reference to `_Xsetlocale'
|
|
<UL>If this error occurs, you might have to recompile libX11.so
|
|
with the -DX_LOCALE flag (thanks to Scott Lampert,
|
|
<A HREF="mailto:fortunato@heavymetal.org">fortunato@heavymetal.org</A>).
|
|
|
|
</UL>
|
|
<HR>
|
|
|
|
|
|
</BODY>
|
|
</HTML>
|