diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-10-29 16:02:02 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-10-29 16:38:44 +0000 |
commit | 95489293ef40dfd46498b08f2dfb3b6fa1c288ec (patch) | |
tree | 5a4391756bb5fbe4172b852add03e1086b74f64b /main/firefox/getchar.patch | |
parent | ee754870689436f39cc3500b4d3af63435fb0eb3 (diff) | |
download | aports-95489293ef40dfd46498b08f2dfb3b6fa1c288ec.tar.bz2 aports-95489293ef40dfd46498b08f2dfb3b6fa1c288ec.tar.xz |
main/firefox: upgrade to 31.2.0 esr
dont build xulrunner separately
Diffstat (limited to 'main/firefox/getchar.patch')
-rw-r--r-- | main/firefox/getchar.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/main/firefox/getchar.patch b/main/firefox/getchar.patch new file mode 100644 index 0000000000..981206b971 --- /dev/null +++ b/main/firefox/getchar.patch @@ -0,0 +1,14 @@ +--- ./media/webrtc/trunk/webrtc/system_wrappers/source/spreadsortlib/spreadsort.hpp.orig ++++ ./media/webrtc/trunk/webrtc/system_wrappers/source/spreadsortlib/spreadsort.hpp +@@ -21,6 +21,11 @@ + #include "constants.hpp"
+ #include <cstring>
+
++/* prevent the getchar macro from stdio to take preference over the local var */
++#if defined(__UCLIBC__)
++#undef getchar
++#endif
++
+ namespace boost {
+ namespace detail {
+ //This only works on unsigned data types
|