summaryrefslogtreecommitdiff
path: root/firefox4-jemalloc.patch
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@redhat.com>2011-01-31 19:13:52 -0800
committerChristopher Aillon <caillon@redhat.com>2011-01-31 19:13:52 -0800
commitb4d6e96efe5914cdfc2dd9aaf33de12149220f86 (patch)
treeefcbd1aad84d16f0edc822e3db3a71f273527e96 /firefox4-jemalloc.patch
parentMove the categories directly into the .desktop file itself (diff)
downloadlibrewolf-fedora-ff-b4d6e96efe5914cdfc2dd9aaf33de12149220f86.tar.gz
librewolf-fedora-ff-b4d6e96efe5914cdfc2dd9aaf33de12149220f86.tar.bz2
librewolf-fedora-ff-b4d6e96efe5914cdfc2dd9aaf33de12149220f86.zip
Remove the jemalloc specific patches
They belong in XR, but have already been fixed in other ways anyway
Diffstat (limited to 'firefox4-jemalloc.patch')
-rw-r--r--firefox4-jemalloc.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/firefox4-jemalloc.patch b/firefox4-jemalloc.patch
deleted file mode 100644
index 982483f..0000000
--- a/firefox4-jemalloc.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -up mozilla-central/memory/jemalloc/jemalloc.h.jemalloc mozilla-central/memory/jemalloc/jemalloc.h
---- mozilla-central/memory/jemalloc/jemalloc.h.jemalloc 2010-08-18 15:21:10.000000000 -0400
-+++ mozilla-central/memory/jemalloc/jemalloc.h 2010-09-01 16:50:38.615946834 -0400
-@@ -42,12 +42,12 @@ extern const char *_malloc_options;
-
- /* Darwin and Linux already have memory allocation functions */
- #if (!defined(MOZ_MEMORY_DARWIN) && !defined(MOZ_MEMORY_LINUX))
--void *malloc(size_t size);
--void *valloc(size_t size);
--void *calloc(size_t num, size_t size);
--void *realloc(void *ptr, size_t size);
--void free(void *ptr);
--int posix_memalign(void **memptr, size_t alignment, size_t size);
-+void *malloc(size_t size) __THROW __attribute_malloc__ __wur;
-+void *valloc(size_t size) __THROW __attribute_malloc__ __wur;
-+void *calloc(size_t num, size_t size) __THROW __attribute_malloc__ __wur;
-+void *realloc(void *ptr, size_t size) __THROW __attribute_malloc__ __wur;
-+void free(void *ptr) __THROW __attribute_malloc__ __wur;
-+int posix_memalign(void **memptr, size_t alignment, size_t size) __THROW __attribute_malloc__ __wur;
- #endif /* MOZ_MEMORY_DARWIN, MOZ_MEMORY_LINUX */
-
- #if defined(MOZ_MEMORY_ANDROID) || defined(WRAP_MALLOC)
bgstack15