Hello community, here is the log from the commit of package seamonkey checked in at Wed Dec 20 20:34:25 CET 2006. -------- --- seamonkey/seamonkey.changes 2006-11-16 19:58:33.000000000 +0100 +++ /mounts/work_src_done/STABLE/seamonkey/seamonkey.changes 2006-12-20 18:45:59.000000000 +0100 @@ -1,0 +2,5 @@ +Wed Dec 20 18:45:40 CET 2006 - mkoenig@suse.de + +- fix build + +------------------------------------------------------------------- New: ---- seamonkey-bogus_expr.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ seamonkey.spec ++++++ --- /var/tmp/diff_new_pack.zXnpxk/_old 2006-12-20 20:34:08.000000000 +0100 +++ /var/tmp/diff_new_pack.zXnpxk/_new 2006-12-20 20:34:08.000000000 +0100 @@ -14,7 +14,7 @@ License: GNU General Public License (GPL), GNU Library General Public License v. 2.0 and 2.1 (LGPL) Provides: web_browser Version: 1.0.99 -Release: 14 +Release: 19 Summary: The successor of the Mozilla Application Suite URL: http://www.mozilla.org/projects/seamonkey Group: Productivity/Networking/Web/Browsers @@ -52,6 +52,7 @@ Patch22: cjk-postscript-fonts.dif Patch27: postscript.patch Patch29: cups-paper.patch +Patch30: seamonkey-bogus_expr.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: libstdc++ fileutils textutils /bin/sh %define _unpackaged_files_terminate_build 0 @@ -208,6 +209,7 @@ %patch22 %patch27 %patch29 +%patch30 # additional CA certificates cd $RPM_BUILD_DIR/mozilla/security/nss/lib/ckfw/builtins cat %{SOURCE8} >> certdata.txt @@ -669,6 +671,8 @@ %dir %{progdir}/dictionaries %changelog -n seamonkey +* Wed Dec 20 2006 - mkoenig@suse.de +- fix build * Thu Nov 16 2006 - mkoenig@suse.de - update to CVS version 20061107 from buildservice [#221676] * Wed Nov 15 2006 - sbrabec@suse.cz ++++++ seamonkey-bogus_expr.patch ++++++ --- content/events/src/nsEventStateManager.cpp +++ content/events/src/nsEventStateManager.cpp @@ -4300,8 +4300,7 @@ nsCOMPtr<nsPIDOMWindow> newWindow = do_QueryInterface(GetDocumentOuterWindow(mDocument)); if (newWindow) { - nsIFocusController *newFocusController = - newFocusController = newWindow->GetRootFocusController(); + nsIFocusController *newFocusController = newWindow->GetRootFocusController(); nsCOMPtr<nsPIDOMWindow> oldWindow = do_QueryInterface(GetDocumentOuterWindow(gLastFocusedDocument)); if (oldWindow) { --- intl/unicharutil/src/nsEntityConverter.cpp +++ intl/unicharutil/src/nsEntityConverter.cpp @@ -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); --- layout/base/nsCSSRendering.cpp +++ layout/base/nsCSSRendering.cpp @@ -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 +++ layout/xul/base/src/nsBox.cpp @@ -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); --- mailnews/local/src/nsMailboxService.cpp +++ mailnews/local/src/nsMailboxService.cpp @@ -228,7 +228,7 @@ // this happens with forward inline of message/rfc822 attachment // opened in a stand-alone msg window. - PRInt32 typeIndex = typeIndex = uriString.Find("&type=application/x-message-display"); + PRInt32 typeIndex = uriString.Find("&type=application/x-message-display"); if (typeIndex != kNotFound) { uriString.Cut(typeIndex, sizeof("&type=application/x-message-display") - 1); --- netwerk/cache/src/nsDiskCacheMap.h +++ netwerk/cache/src/nsDiskCacheMap.h @@ -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; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org