[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:04:17 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 83fff19685c733d94ec210ebab08538bcbdfd48f
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 22 23:18:37 2003 +0000

            Fix broken build.
    
            * kjs/simple_number.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5241 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index d971256..8228eab 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,11 @@
 2003-10-22  Maciej Stachowiak  <mjs at apple.com>
 
+        Fix broken build.
+
+        * kjs/simple_number.h:
+
+2003-10-22  Maciej Stachowiak  <mjs at apple.com>
+
 	Merged 64-bit compilation fixes, and fixes for handling negative 0
 	from upstream kjs.
 	
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index d971256..8228eab 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,5 +1,11 @@
 2003-10-22  Maciej Stachowiak  <mjs at apple.com>
 
+        Fix broken build.
+
+        * kjs/simple_number.h:
+
+2003-10-22  Maciej Stachowiak  <mjs at apple.com>
+
 	Merged 64-bit compilation fixes, and fixes for handling negative 0
 	from upstream kjs.
 	
diff --git a/JavaScriptCore/kjs/simple_number.h b/JavaScriptCore/kjs/simple_number.h
index e5b5564..b9ac945 100644
--- a/JavaScriptCore/kjs/simple_number.h
+++ b/JavaScriptCore/kjs/simple_number.h
@@ -46,6 +46,8 @@ namespace KJS {
 	static inline bool fits(double d) { return d <= max && d >= min && d == (double)(long)d &&
 					    !IS_NEGATIVE_ZERO(d); }
 	static inline ValueImp *make(long i) { return (ValueImp *)((i << shift) | tag); }
+
+	static double negZero;
     };
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list