summaryrefslogtreecommitdiff
path: root/www/seamonkey/patches/patch-ak
diff options
context:
space:
mode:
Diffstat (limited to 'www/seamonkey/patches/patch-ak')
-rw-r--r--www/seamonkey/patches/patch-ak30
1 files changed, 12 insertions, 18 deletions
diff --git a/www/seamonkey/patches/patch-ak b/www/seamonkey/patches/patch-ak
index a976311d611..f8f5bdd7a8e 100644
--- a/www/seamonkey/patches/patch-ak
+++ b/www/seamonkey/patches/patch-ak
@@ -1,19 +1,13 @@
-$NetBSD: patch-ak,v 1.3 2010/03/16 10:59:10 tnn Exp $
+$NetBSD: patch-ak,v 1.4 2011/07/11 20:46:36 tnn Exp $
---- mozilla/toolkit/components/places/src/nsMorkHistoryImporter.cpp.orig 2009-06-29 18:15:22.000000000 +0200
-+++ mozilla/toolkit/components/places/src/nsMorkHistoryImporter.cpp
-@@ -148,9 +148,12 @@ AddToHistoryCB(const nsCSubstring &aRowI
- }
-
- PRTime date;
-- if (PR_sscanf(values[kLastVisitColumn].get(), "%lld", &date) != 1) {
-+ long long ld;
-+ if (PR_sscanf(values[kLastVisitColumn].get(), "%lld", &ld) != 1) {
- date = -1;
-- }
-+ } else {
-+ date = ld;
-+ }
-
- PRBool isTyped = values[kTypedColumn].EqualsLiteral("1");
- PRInt32 transition = isTyped ?
+--- mozilla/js/src/ctypes/libffi/configure.orig 2010-03-16 01:02:50.000000000 +0000
++++ mozilla/js/src/ctypes/libffi/configure
+@@ -12232,7 +12232,7 @@ case "$host" in
+ powerpc-*-aix* | rs6000-*-aix*)
+ TARGET=POWERPC_AIX; TARGETDIR=powerpc
+ ;;
+- powerpc-*-freebsd*)
++ powerpc-*-freebsd* | powerpc-*-netbsd*)
+ TARGET=POWERPC_FREEBSD; TARGETDIR=powerpc
+ ;;
+ powerpc*-*-rtems*)