pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/xulrunner17



Module Name:    pkgsrc
Committed By:   joerg
Date:           Wed Dec 21 13:36:23 UTC 2016

Modified Files:
        pkgsrc/devel/xulrunner17: distinfo
Added Files:
        pkgsrc/devel/xulrunner17/patches: patch-js_src_jsopcode.cpp

Log Message:
Don't check pointer signs.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/xulrunner17/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/devel/xulrunner17/patches/patch-js_src_jsopcode.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/xulrunner17/distinfo
diff -u pkgsrc/devel/xulrunner17/distinfo:1.21 pkgsrc/devel/xulrunner17/distinfo:1.22
--- pkgsrc/devel/xulrunner17/distinfo:1.21      Sat Mar 26 23:26:14 2016
+++ pkgsrc/devel/xulrunner17/distinfo   Wed Dec 21 13:36:23 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.21 2016/03/26 23:26:14 joerg Exp $
+$NetBSD: distinfo,v 1.22 2016/12/21 13:36:23 joerg Exp $
 
 SHA1 (firefox-17.0.11esr.source.tar.bz2) = 593153bc2658be0bdf6d1361a079d4ce8fd516bd
 RMD160 (firefox-17.0.11esr.source.tar.bz2) = 9797f1553bf20008e62df2713a22c5844e7e3bdc
@@ -78,6 +78,7 @@ SHA1 (patch-js_src_config_system-headers
 SHA1 (patch-js_src_jscpucfg.h) = afce65ca5964fb732d96cf22902f89cd02aedf0d
 SHA1 (patch-js_src_jsgc.cpp) = 0e617094a4b7d87cdf801d9bc4ac1f52d909a12a
 SHA1 (patch-js_src_jsinterp.cpp) = bee8bdde7dd951dbfbe5b049eb502f7412fbf8e6
+SHA1 (patch-js_src_jsopcode.cpp) = 23c711f8145cd3e56a15f8126eac89d88d17af9c
 SHA1 (patch-js_src_methodjit_MethodJIT.cpp) = f2b12fa554ec319b5848b1cc13ec17ef967b08d7
 SHA1 (patch-mb) = d1348344ad269df7008d857417551c594c9b9195
 SHA1 (patch-md) = 1369069901aacaa47d76753772236fe159d42362

Added files:

Index: pkgsrc/devel/xulrunner17/patches/patch-js_src_jsopcode.cpp
diff -u /dev/null pkgsrc/devel/xulrunner17/patches/patch-js_src_jsopcode.cpp:1.1
--- /dev/null   Wed Dec 21 13:36:24 2016
+++ pkgsrc/devel/xulrunner17/patches/patch-js_src_jsopcode.cpp  Wed Dec 21 13:36:23 2016
@@ -0,0 +1,15 @@
+$NetBSD: patch-js_src_jsopcode.cpp,v 1.1 2016/12/21 13:36:23 joerg Exp $
+
+Don't check pointers for sign.
+
+--- js/src/jsopcode.cpp.orig   2016-12-19 23:21:39.469638330 +0000
++++ js/src/jsopcode.cpp
+@@ -6067,7 +6067,7 @@ ExpressionDecompiler::write(JSString *s)
+ bool
+ ExpressionDecompiler::quote(JSString *s, uint32_t quote)
+ {
+-    return QuoteString(&sprinter, s, quote) >= 0;
++    return QuoteString(&sprinter, s, quote);
+ }
+ 
+ JSAtom *



Home | Main Index | Thread Index | Old Index