summaryrefslogtreecommitdiff
path: root/www/firefox/patches/patch-ci
diff options
context:
space:
mode:
authormartin <martin>2005-06-22 22:05:34 +0000
committermartin <martin>2005-06-22 22:05:34 +0000
commit5b879f7811618f871a45f36fd98d1673eca80a01 (patch)
tree5cdd53ad3265071350a6557d43808ccbce3d8334 /www/firefox/patches/patch-ci
parentb37ffe6f736f30735637c424bd75a5a5a399552d (diff)
downloadpkgsrc-5b879f7811618f871a45f36fd98d1673eca80a01.tar.gz
Re-instantiate the NAN/INFINITY fixes, this time in a way that works on
older C environments as well.
Diffstat (limited to 'www/firefox/patches/patch-ci')
-rw-r--r--www/firefox/patches/patch-ci13
1 files changed, 13 insertions, 0 deletions
diff --git a/www/firefox/patches/patch-ci b/www/firefox/patches/patch-ci
new file mode 100644
index 00000000000..483b6dbe4d3
--- /dev/null
+++ b/www/firefox/patches/patch-ci
@@ -0,0 +1,13 @@
+$NetBSD: patch-ci,v 1.3 2005/06/22 22:05:34 martin Exp $
+
+--- extensions/transformiix/source/xpath/FunctionCall.cpp.orig 2003-11-04 16:13:03.000000000 +0100
++++ extensions/transformiix/source/xpath/FunctionCall.cpp 2005-06-16 09:14:19.000000000 +0200
+@@ -92,7 +92,7 @@
+ nsRefPtr<txAExprResult> exprResult;
+ nsresult rv = aExpr->evaluate(aContext, getter_AddRefs(exprResult));
+ if (NS_FAILED(rv))
+- return Double::NaN;
++ return Double::NaN();
+
+ return exprResult->numberValue();
+ }