aboutsummaryrefslogtreecommitdiffstats
path: root/community/firefox/stat.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2015-09-30 13:03:16 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2015-09-30 13:03:16 +0200
commitf8f12a1762ad21637c24bf91b05725e792871b0f (patch)
tree0b941bb30869ad0582f3fa8a386dd25adf1e1f71 /community/firefox/stat.patch
parent929dd180fe472aa962dc6603a807be97fa7fbb06 (diff)
downloadaports-f8f12a1762ad21637c24bf91b05725e792871b0f.tar.bz2
aports-f8f12a1762ad21637c24bf91b05725e792871b0f.tar.xz
community/firefox: moved from main
Diffstat (limited to 'community/firefox/stat.patch')
-rw-r--r--community/firefox/stat.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/firefox/stat.patch b/community/firefox/stat.patch
new file mode 100644
index 0000000000..ed7dc007e2
--- /dev/null
+++ b/community/firefox/stat.patch
@@ -0,0 +1,25 @@
+--- ./dom/system/OSFileConstants.cpp.orig 2013-04-17 06:17:29.798371189 +0000
++++ ./dom/system/OSFileConstants.cpp 2013-04-17 06:30:30.032285977 +0000
+@@ -509,6 +509,11 @@
+ INT_CONSTANT(_STAT_VER),
+ #endif // defined(_STAT_VER)
+
++ // glibc's stat/lstat/fstat are macros while uclibc's are not
++#if defined(__GLIBC__) && !defined(__UCLIBC__)
++ { "OSFILE_STAT_MACROS", INT_TO_JSVAL(1) },
++#endif // defined(stat)
++
+ PROP_END
+ };
+
+--- ./toolkit/components/osfile/modules/osfile_unix_back.jsm.orig 2014-04-03 13:08:26.686409787 +0000
++++ ./toolkit/components/osfile/modules/osfile_unix_back.jsm 2014-04-03 13:34:14.101716259 +0000
+@@ -512,7 +512,7 @@
+ /*path*/ Type.fd,
+ /*buf*/ Type.stat.out_ptr
+ );
+- } else if (Const._STAT_VER != undefined) {
++ } else if (Const.OSFILE_STAT_MACROS != undefined) {
+ const ver = Const._STAT_VER;
+ let xstat_name, lxstat_name, fxstat_name;
+ if (OS.Constants.Sys.Name == "SunOS") {