Hello community, here is the log from the commit of package MozillaFirefox checked in at Thu Oct 26 20:18:23 CEST 2006. -------- --- MozillaFirefox/MozillaFirefox.changes 2006-10-23 21:55:10.000000000 +0200 +++ /mounts/work_src_done/STABLE/MozillaFirefox/MozillaFirefox.changes 2006-10-26 07:07:37.000000000 +0200 @@ -1,0 +2,8 @@ +Thu Oct 26 06:58:59 CEST 2006 - aj@suse.de + +- Fix gcc warnings about undefined operations, patch by + Robert O'Callahan. +- Update system-proxies.patch to fix error box (214125), patch by + Robert O'Callahan. + +------------------------------------------------------------------- New: ---- gcc-undefined-ops.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ MozillaFirefox.spec ++++++ --- /var/tmp/diff_new_pack.6tRbey/_old 2006-10-26 20:18:05.000000000 +0200 +++ /var/tmp/diff_new_pack.6tRbey/_new 2006-10-26 20:18:05.000000000 +0200 @@ -21,7 +21,7 @@ Obsoletes: mozilla %endif Version: 2.0 -Release: 1 +Release: 5 Summary: Mozilla Firefox Web Browser URL: http://www.mozilla.org/ Group: Productivity/Networking/Web/Browsers @@ -50,6 +50,7 @@ Source18: firefox.schemas Patch1: visibility.patch Patch2: rpath.patch +Patch3: gcc-undefined-ops.patch Patch4: pango-cairo.patch Patch5: abuild.patch # NSPR bmo #270502 @@ -165,6 +166,7 @@ cd $RPM_BUILD_DIR/mozilla %patch1 %patch2 +%patch3 %patch4 %patch5 %patch6 @@ -539,6 +541,11 @@ %endif %changelog -n MozillaFirefox +* Thu Oct 26 2006 - aj@suse.de +- Fix gcc warnings about undefined operations, patch by + Robert O'Callahan. +- Update system-proxies.patch to fix error box (214125), patch by + Robert O'Callahan. * Mon Oct 23 2006 - aj@suse.de - Update to current CVS version of 2.0. - Use www.opensuse.org as default home page for now (#203547). ++++++ gcc-undefined-ops.patch ++++++ --- layout/base/nsCSSRendering.cpp.orig 2006-10-25 23:59:19.000000000 +0200 +++ layout/base/nsCSSRendering.cpp 2006-10-26 00:00:04.000000000 +0200 @@ -1000,14 +1000,14 @@ FillOrInvertRect(aContext, dashRect.x, borderOutside.y,dashRect.width, dashRect.height-adjust,isInvert); FillOrInvertRect(aContext,dashRect.x,(borderOutside.YMost()-(dashRect.height-adjust)),dashRect.width, dashRect.height-adjust,isInvert); currRect.y += (dashRect.height-adjust); - temp = temp-= (dashRect.height-adjust); + temp -= (dashRect.height-adjust); } else { adjust = (temp%dashRect.width)/2; // adjust a tad longer // draw in the left and right FillOrInvertRect(aContext, dashRect.x, borderOutside.y,dashRect.width, dashRect.height+adjust,isInvert); FillOrInvertRect(aContext, dashRect.x,(borderOutside.YMost()-(dashRect.height+adjust)),dashRect.width, dashRect.height+adjust,isInvert); currRect.y += (dashRect.height+adjust); - temp = temp-= (dashRect.height+adjust); + temp -= (dashRect.height+adjust); } if( temp > ywidth) @@ -1066,14 +1066,14 @@ FillOrInvertRect(aContext, borderOutside.x,dashRect.y,dashRect.width-adjust,dashRect.height,isInvert); FillOrInvertRect(aContext, (borderOutside.XMost()-(dashRect.width-adjust)),dashRect.y,dashRect.width-adjust,dashRect.height,isInvert); currRect.x += (dashRect.width-adjust); - temp = temp-= (dashRect.width-adjust); + temp -= (dashRect.width-adjust); } else { adjust = (temp%dashRect.width)/2; // draw in the left and right FillOrInvertRect(aContext, borderOutside.x,dashRect.y,dashRect.width+adjust,dashRect.height,isInvert); FillOrInvertRect(aContext, (borderOutside.XMost()-(dashRect.width+adjust)),dashRect.y,dashRect.width+adjust,dashRect.height,isInvert); currRect.x += (dashRect.width+adjust); - temp = temp-= (dashRect.width+adjust); + temp -= (dashRect.width+adjust); } --- layout/xul/base/src/nsBox.cpp.orig 2006-10-26 00:00:26.000000000 +0200 +++ layout/xul/base/src/nsBox.cpp 2006-10-26 00:01:30.000000000 +0200 @@ -863,7 +863,7 @@ while (box) { nsRect* overflowArea = box->GetOverflowAreaProperty(); nsRect bounds = overflowArea ? *overflowArea + box->GetPosition() : - bounds = box->GetRect(); + box->GetRect(); rect.UnionRect(rect, bounds); box->GetNextBox(&box); --- intl/unicharutil/src/nsEntityConverter.cpp.orig 2005-04-02 20:44:00.000000000 +0200 +++ intl/unicharutil/src/nsEntityConverter.cpp 2006-10-26 00:07:24.000000000 +0200 @@ -236,7 +236,8 @@ if (IS_HIGH_SURROGATE(inString[i]) && i + 2 < len && IS_LOW_SURROGATE(inString[i + 1])) { - key.AppendInt(SURROGATE_TO_UCS4(inString[i], inString[++i]), 10); + key.AppendInt(SURROGATE_TO_UCS4(inString[i], inString[i + 1]), 10); + ++i; } else { key.AppendInt(inString[i],10); --- content/events/src/nsEventStateManager.cpp.orig 2006-08-06 00:19:17.000000000 +0200 +++ content/events/src/nsEventStateManager.cpp 2006-10-26 00:11:16.000000000 +0200 @@ -4301,7 +4301,7 @@ do_QueryInterface(GetDocumentOuterWindow(mDocument)); if (newWindow) { nsIFocusController *newFocusController = - newFocusController = newWindow->GetRootFocusController(); + newWindow->GetRootFocusController(); nsCOMPtr<nsPIDOMWindow> oldWindow = do_QueryInterface(GetDocumentOuterWindow(gLastFocusedDocument)); if (oldWindow) { --- netwerk/cache/src/nsDiskCacheMap.h.orig 2006-02-04 23:01:22.000000000 +0100 +++ netwerk/cache/src/nsDiskCacheMap.h 2006-10-26 00:15:09.000000000 +0200 @@ -168,7 +168,7 @@ // set blockCount NS_ASSERTION( (blockCount>=1) && (blockCount<=4),"invalid block count"); - blockCount = --blockCount; + --blockCount; mDataLocation |= (blockCount << eExtraBlocksOffset) & eExtraBlocksMask; mDataLocation |= eLocationInitializedMask; @@ -236,7 +236,7 @@ // set blockCount NS_ASSERTION( (blockCount>=1) && (blockCount<=4),"invalid block count"); - blockCount = --blockCount; + --blockCount; mMetaLocation |= (blockCount << eExtraBlocksOffset) & eExtraBlocksMask; mMetaLocation |= eLocationInitializedMask; ++++++ system-proxies.patch ++++++ --- /var/tmp/diff_new_pack.6tRbey/_old 2006-10-26 20:18:09.000000000 +0200 +++ /var/tmp/diff_new_pack.6tRbey/_new 2006-10-26 20:18:09.000000000 +0200 @@ -20,7 +20,7 @@ +<!DOCTYPE prefwindow [ + <!ENTITY % connectionDTD SYSTEM "chrome://browser/locale/preferences/connection.dtd"> + %connectionDTD; -+ <!ENTITY % fontsDTD SYSTEM "chrome://browser/locale/preferences/fonts.dtd"> ++ <!ENTITY % mainDTD SYSTEM "chrome://browser/locale/preferences/main.dtd"> + %fontsDTD; +]> @@ -30,7 +30,7 @@ <radiogroup id="networkProxyType" preference="network.proxy.type" onsyncfrompreference="return gConnectionsDialog.readProxyType();"> <radio value="0" label="&directTypeRadio.label;" accesskey="&directTypeRadio.accesskey;"/> -+ <radio value="5" label="&resolution.system.label;" /> ++ <radio value="5" label="&systemDefaults.label;" /> <radio value="4" label="&WPADTypeRadio.label;" accesskey="&WPADTypeRadio.accesskey;"/> <radio value="1" label="&manualTypeRadio.label;" accesskey="&manualTypeRadio.accesskey;"/> <grid class="indent" flex="1"> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de