summaryrefslogtreecommitdiff
path: root/package/firefox/patches/patch-ipc_chromium_src_base_process_util_h
diff options
context:
space:
mode:
Diffstat (limited to 'package/firefox/patches/patch-ipc_chromium_src_base_process_util_h')
-rw-r--r--package/firefox/patches/patch-ipc_chromium_src_base_process_util_h21
1 files changed, 0 insertions, 21 deletions
diff --git a/package/firefox/patches/patch-ipc_chromium_src_base_process_util_h b/package/firefox/patches/patch-ipc_chromium_src_base_process_util_h
deleted file mode 100644
index ef7d44628..000000000
--- a/package/firefox/patches/patch-ipc_chromium_src_base_process_util_h
+++ /dev/null
@@ -1,21 +0,0 @@
---- mozilla-release.orig/ipc/chromium/src/base/process_util.h 2011-07-08 03:15:22.000000000 +0200
-+++ mozilla-release/ipc/chromium/src/base/process_util.h 2011-07-29 16:26:23.000000000 +0200
-@@ -62,7 +62,8 @@ enum ProcessArchitecture {
- PROCESS_ARCH_I386 = 0x1,
- PROCESS_ARCH_X86_64 = 0x2,
- PROCESS_ARCH_PPC = 0x4,
-- PROCESS_ARCH_ARM = 0x8
-+ PROCESS_ARCH_ARM = 0x8,
-+ PROCESS_ARCH_MIPS = 0xf
- };
-
- static ProcessArchitecture GetCurrentProcessArchitecture()
-@@ -76,6 +77,8 @@ static ProcessArchitecture GetCurrentPro
- currentArchitecture = base::PROCESS_ARCH_PPC;
- #elif defined(ARCH_CPU_ARMEL)
- currentArchitecture = base::PROCESS_ARCH_ARM;
-+#elif defined(ARCH_CPU_MIPS)
-+ currentArchitecture = base::PROCESS_ARCH_MIPS;
- #endif
- return currentArchitecture;
- }