From 67f0d66bcc7f22d53d3b00a97fc0c98eaf411430 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 3 Sep 2014 14:47:28 +0000 Subject: testing/xulrunner: add xulrunner-32.0 --- testing/xulrunner/stat.patch | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 testing/xulrunner/stat.patch (limited to 'testing/xulrunner/stat.patch') diff --git a/testing/xulrunner/stat.patch b/testing/xulrunner/stat.patch new file mode 100644 index 0000000000..ed7dc007e2 --- /dev/null +++ b/testing/xulrunner/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") { -- cgit v1.2.3