diff options
Diffstat (limited to 'www/seamonkey/files/patch-bug824317')
-rw-r--r-- | www/seamonkey/files/patch-bug824317 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/www/seamonkey/files/patch-bug824317 b/www/seamonkey/files/patch-bug824317 new file mode 100644 index 000000000000..83c1b4d56029 --- /dev/null +++ b/www/seamonkey/files/patch-bug824317 @@ -0,0 +1,14 @@ +diff --git a/xpcom/string/public/nsAlgorithm.h b/xpcom/string/public/nsAlgorithm.h +index fa50194a..c5f5737 100644 +--- mozilla/xpcom/string/public/nsAlgorithm.h ++++ mozilla/xpcom/string/public/nsAlgorithm.h +@@ -42,7 +42,8 @@ NS_MAX( const T& a, const T& b ) + return a > b ? a : b; + } + +-#if defined(_MSC_VER) && (_MSC_VER < 1600) ++#if (defined(_MSC_VER) && (_MSC_VER < 1600)) || \ ++ (defined(_GLIBCXX_USE_LONG_LONG) && (!_GLIBCXX_USE_C99 || _GLIBCXX_USE_C99_LONG_LONG_DYNAMIC)) + namespace std { + inline + long long |