Compare commits

..

1 Commits

Author SHA1 Message Date
(no author)
85a3f59a72 This commit was manufactured by cvs2svn to create branch 'SSU_PERSONAL_M13'.
git-svn-id: svn://10.0.0.236/branches/SSU_PERSONAL_M13@54297 18797224-902f-48f8-a5cc-f745e15eee43
1999-11-23 20:00:21 +00:00
2 changed files with 98 additions and 33 deletions

View File

@@ -1,33 +0,0 @@
#
## hostname: bm-xserve08.build.mozilla.org
## uname: Darwin bm-xserve08.build.mozilla.org 8.8.4 Darwin Kernel Version 8.8.4: Sun Oct 29 15:26:54 PST 2006; root:xnu-792.16.4.obj~1/RELEASE_I386 i386 i386
#
# symbols for breakpad
export CFLAGS="-g -gfull"
export CXXFLAGS="-g -gfull"
. $topsrcdir/build/macosx/universal/mozconfig
mk_add_options MOZ_MAKE_FLAGS="-j4"
mk_add_options MOZ_CO_MODULE="mozilla/tools/update-packaging mozilla/tools/codesighs"
mk_add_options MOZ_CO_PROJECT="browser"
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../build/universal
ac_add_options --enable-application=browser
ac_add_options --enable-update-channel=nightly
# Don't add explicit optimize flags here, set them in configure.in, see bug 407794.
ac_add_options --enable-optimize
ac_add_options --disable-debug
ac_add_options --disable-tests
ac_add_options --enable-update-packaging
ac_add_options --enable-libxul
ac_add_options --enable-shark
export MOZ_PKG_SPECIAL="shark"
ac_add_options --enable-debugger-info-modules
#ac_add_options --enable-dtrace
# ac_add_options --enable-official-branding
ac_add_app_options ppc --enable-prebinding
ac_add_options --enable-codesighs

View File

@@ -0,0 +1,98 @@
<html>
<head>
<title>Commercial build update</title>
</head>
<body>
<script>
var xpi = new Object();
var numxpi = 0;
var numstatus = 0;
function showprops(obj) {
var props = "";
for (i in obj) {
props += i+":"+obj[i]+"\n ";
}
alert(props);
}
function statusCallback(url,status) {
for (i in xpi) {
if ( url.indexOf(xpi[i]) != -1 ) {
xpi[i] = status;
numstatus++;
break;
}
}
// if we've gotten all results then display them
if (numstatus == numxpi)
{
var text;
var restart = false;
dlg = window.open("","resultWindow");
dlg.document.write("<head><title>XPInstall Results</title></head>");
dlg.document.write("<body><h1>XPInstall Results</h1>");
for (i in xpi)
{
text = " "+i+": ";
switch (status) {
case 999:
restart = true; // fall-through
case 0:
text += "Successful";
break;
default:
text += "Error encountered -- "+status;
break;
}
text += "<br>";
dlg.document.write(text);
}
if (restart) {
dlg.document.write("<p>Some files were in use, you must restart to complete the installation");
}
dlg.document.write("</body>");
dlg.document.close();
}
}
function launch() {
for (var i = 0; i < document.installForm.elements.length; i++)
{
e = document.installForm.elements[i];
if (e.type.match(/checkbox/i) && e.checked )
{
xpi[e.value] = "xpi/"+e.name+".xpi";
numxpi++;
}
}
// showprops(xpi);
InstallTrigger.install(xpi,statusCallback);
}
</script>
<h2>Commercial Build update</h2>
Select the parts of Seamonkey you wish to update and press the Launch button.
<p>
Update all of the pieces you use at once; mismatched versions
will cause you grief.
<form name="installForm">
<input type="checkbox" name="core" value="Navigator" checked> Navigator <br>
<input type="checkbox" name="security" value="SSL/HTTP" checked> SSL/HTTP <br>
<input type="checkbox" name="mail" value="Mail" checked> Mail <br>
<input type="checkbox" name="aim" value="Instant Messenger" checked> Instant Messenger <br>
<input type="checkbox" name="fullcircle" value="FullCircle"> FullCircle <br>
<input type="checkbox" name="spellchecker" value="Spelling Checker"> Spelling Checker <br>
<input type="checkbox" name="psm" value="Cartman"> Cartman <br>
<input type="button" value="Launch XPInstall" onclick="launch()">
</form>
</body>
</html>