[39030] trunk/dports/www/firefox-x11

vinc17 at macports.org vinc17 at macports.org
Wed Aug 6 02:54:35 PDT 2008


Revision: 39030
          http://trac.macosforge.org/projects/macports/changeset/39030
Author:   vinc17 at macports.org
Date:     2008-08-06 02:54:34 -0700 (Wed, 06 Aug 2008)
Log Message:
-----------
firefox-x11: added patch to avoid integer overflow; this should fix the
bug reported on http://trac.macports.org/ticket/16225#comment:2

Modified Paths:
--------------
    trunk/dports/www/firefox-x11/Portfile

Added Paths:
-----------
    trunk/dports/www/firefox-x11/files/patch-nsIClassInfo.idl

Modified: trunk/dports/www/firefox-x11/Portfile
===================================================================
--- trunk/dports/www/firefox-x11/Portfile	2008-08-06 09:20:59 UTC (rev 39029)
+++ trunk/dports/www/firefox-x11/Portfile	2008-08-06 09:54:34 UTC (rev 39030)
@@ -33,7 +33,8 @@
                 patch-browser-app-mozilla.in \
                 patch-xptcall_x86.diff \
                 patch-pthread.diff \
-                patch-executable_path.diff
+                patch-executable_path.diff \
+                patch-nsIClassInfo.idl
 
 depends_build   port:pkgconfig
 

Added: trunk/dports/www/firefox-x11/files/patch-nsIClassInfo.idl
===================================================================
--- trunk/dports/www/firefox-x11/files/patch-nsIClassInfo.idl	                        (rev 0)
+++ trunk/dports/www/firefox-x11/files/patch-nsIClassInfo.idl	2008-08-06 09:54:34 UTC (rev 39030)
@@ -0,0 +1,11 @@
+--- xpcom/components/nsIClassInfo.idl~	2004-04-18 16:18:13.000000000 +0200
++++ xpcom/components/nsIClassInfo.idl	2008-08-06 11:45:19.000000000 +0200
+@@ -115,7 +115,7 @@
+     // The high order bit is RESERVED for consumers of these flags. 
+     // No implementor of this interface should ever return flags 
+     // with this bit set.
+-    const PRUint32 RESERVED             = 1 << 31;
++    const PRUint32 RESERVED             = 1U << 31;
+ 
+ 
+     readonly attribute PRUint32 flags;
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20080806/9122aa1b/attachment.html 


More information about the macports-changes mailing list