diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-03-31 09:57:22 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-03-31 12:48:15 +0000 |
commit | 367991275b8f37b8bdd024eceddbb4c2bb981f76 (patch) | |
tree | 23666c013fd8a9298bda2db769ebe3192f46aa87 /community/firefox-esr/fix-ipc.patch | |
parent | 4c9e27a54c4f400e46645cb768b7743d2e29f9b1 (diff) | |
download | aports-367991275b8f37b8bdd024eceddbb4c2bb981f76.tar.bz2 aports-367991275b8f37b8bdd024eceddbb4c2bb981f76.tar.xz |
community/firefox-esr: upgrade to 45.0.1
Diffstat (limited to 'community/firefox-esr/fix-ipc.patch')
-rw-r--r-- | community/firefox-esr/fix-ipc.patch | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/community/firefox-esr/fix-ipc.patch b/community/firefox-esr/fix-ipc.patch deleted file mode 100644 index 8371957d4b..0000000000 --- a/community/firefox-esr/fix-ipc.patch +++ /dev/null @@ -1,55 +0,0 @@ ---- mozilla-release.orig/ipc/chromium/src/base/file_util.h -+++ mozilla-release/ipc/chromium/src/base/file_util.h -@@ -14,10 +14,15 @@ - #include <windows.h> - #elif defined(ANDROID) - #include <sys/stat.h> -+#define NO_FTS - #elif defined(OS_POSIX) - #include <sys/types.h> --#include <fts.h> - #include <sys/stat.h> -+#ifdef __GLIBC__ -+#include <fts.h> -+#else -+#define NO_FTS -+#endif - #endif - - #include <stdio.h> ---- mozilla-release.orig/ipc/chromium/src/base/file_util_posix.cc -+++ mozilla-release/ipc/chromium/src/base/file_util_posix.cc -@@ -8,13 +8,13 @@ - #include <errno.h> - #include <fcntl.h> - #include <fnmatch.h> --#ifndef ANDROID -+#ifndef NO_FTS - #include <fts.h> - #endif - #include <libgen.h> - #include <stdio.h> - #include <string.h> --#include <sys/errno.h> -+#include <errno.h> - #include <sys/mman.h> - #define _DARWIN_USE_64_BIT_INODE // Use 64-bit inode data structures - #include <sys/stat.h> -@@ -67,7 +67,7 @@ - if (!recursive) - return (rmdir(path_str) == 0); - --#ifdef ANDROID -+#ifdef NO_FTS - // XXX Need ftsless impl for bionic - return false; - #else -@@ -140,7 +140,7 @@ - return false; - } - --#ifdef ANDROID -+#ifdef NO_FTS - // XXX Need ftsless impl for bionic - return false; - #else |