69fbd691a0
- Bug 1697071 - Add GLOBALTRUST 2020 root cert to NSS. r=bwilson (e6f1699e2) - Bug 1703942 - Add ANF Secure Server Root CA to NSS. r=bwilson (56f2f755d) - Bug 1707097 - Add Certum EC-384 CA to NSS. r=bwilson (565d59669) - Bug 1707097 - Add Certum Trusted Root CA to NSS. r=bwilson (dd3bedbfa) - Bug 1708307 - Remove Trustis FPS Root CA from NSS. r=bwilson (ea27ab010) - Bug 1710716 - Remove Expired Root Certificates from NSS - QuoVadis Root Certification Authority. r=bwilson (78cce989c) - Bug 1710716 - Remove Expired Sonera Class2 CA from NSS. r=bwilson (849c34a60) |
||
---|---|---|
accessible | ||
browser | ||
build | ||
calendar/sunbird/config | ||
caps | ||
chrome | ||
config | ||
content | ||
db | ||
dbm | ||
directory | ||
docshell | ||
dom | ||
editor | ||
embedding | ||
extensions | ||
gc/boehm | ||
gfx | ||
intl | ||
ipc/ipcd | ||
jpeg | ||
js | ||
l10n | ||
layout | ||
lib/mac/PowerPlant | ||
mail/config | ||
mailnews | ||
modules | ||
netwerk | ||
nsprpub | ||
parser | ||
plugin/oji | ||
profile | ||
rdf | ||
README/mozilla | ||
redist/microsoft/system | ||
rzTests | ||
security | ||
storage | ||
suite | ||
sun-java | ||
themes | ||
toolkit | ||
tools | ||
update | ||
uriloader | ||
view | ||
webshell | ||
widget | ||
xpcom | ||
xpfe | ||
xpinstall | ||
xulrunner | ||
.gitignore | ||
.mozconfig.mk | ||
aclocal.m4 | ||
allmakefiles.sh | ||
client.mak | ||
client.mk | ||
configure | ||
configure.in | ||
CREDITS.txt | ||
LEGAL | ||
LICENSE | ||
Makefile.in | ||
makefile.win | ||
mozconfig-browser.txt | ||
mozconfig-suite.txt | ||
mozconfig-xulrunner.txt | ||
nglayout.mk | ||
readme.md | ||
README.txt |
RetroZilla
RetroZilla is a fork of Gecko 1.8.1 for improved compatibility on the modern web, with Windows 95 and Windows NT 4.0 in mind. Right now, RetroZilla's rendering capabilities are pretty similar to Firefox 2.0's, but as RetroZilla progresses, so will its capabilities.
RetroZilla Suite is the primary target of RetroZilla, but code exists in the tree to build RetroZilla Browser (Firefox 2) and xulrunner.
Building
I currently do my builds on Windows 2000 SP4 with Visual Studio 6.0 and MozillaBuild 1.2. Building should also work on Windows XP/2003, and possibly Vista and above, but don't take my word on it.
-
You're going to need to install VC6, MozillaBuild 1.2, VC6 SP5 (not SP6) and VC6 Processor Pack.
-
Place your source somewhere in a directory without spaces if it's not already. I recommend something like C:\projects\RetroZilla\RetroZilla.
-
Start "start-msvc6.bat" in C:\mozilla-build. This will open a UNIX-type shell window. navigate to your source directory. It uses UNIX-style file paths with the Windows drive letters as the first child directory (e.g. C:\WINDOWS\System32 will be /c/WINDOWS/System32 in MSYS shell)
-
Copy mozconfig-suite.txt to mozconfig (no extension). Open up your newly created mozconfig in a text editor. You're going to want to change the object directory, I recommend changing it to the parent directory of the source. Using my example for a source directory above, change
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-sm95-release
tomk_add_options MOZ_OBJDIR=/c/projects/RetroZilla/obj-rzSuite-release
-
Now just run
make -f client.mk configure build
from the MSYS shell and wait. On a VM running on a modern host, building should take 20-40 minutes. On XP-era desktops expect building to take about 1 hour and 20 minutes to 2 hours.
If start-msvc6.bat can't find your VC6 installation, add the following line to start-msvc6.bat, after "SET MOZILLABUILD=..."
SET VC6DIR=C:\Program Files\Microsoft Visual Studio\VC98
Incremental Builds
If you have already built RetroZilla and you would like to save time by building only a small subset of the program to test a change you made, run make from the corresponding folder in your object directory. Depending on what you changed, building should only take a few minutes.
EX: If you made a change to retrozilla/xpfe/browser/resources/content/navigator.xul
, cd into {OBJDIR}/xpfe/browser/resources/content
using MSYS shell and run make
.