void-packages/srcpkgs/firefox/patches/disable-hunspell_hooks.patch
Duncaen 8dc53ede03 firefox: update to 47.0.1.
There are some issues with the configure scripts as they have changed
there something, the pregenerated configure scripts were renamed to
`old-configure` and `configure` is now a shell script which executes
`configure.py`.

The new patch `disable-hunspell_hooks.patch` is needed for musl, it
shouldnt be needed but somehow STATIC_HUNSPELL is defined even tough we
use --enable-system-hunspell.

Test build went through on glibc and musl x86_64, this realese is
already a month old and 46 has some secruity issues, I skip more
testing.
2016-07-06 16:10:29 +02:00

11 lines
388 B
Diff

--- mozilla-config.h.in 2016-07-06 15:16:06.621880293 +0200
+++ mozilla-config.h.in 2016-07-06 15:16:42.958428126 +0200
@@ -54,7 +54,7 @@
* HUNSPELL_STATIC is defined in extensions/spellcheck/hunspell/src/Makefile.in,
* unless --enable-system-hunspell is defined.
*/
-#if defined(HUNSPELL_STATIC)
+#if 0
#include "hunspell_alloc_hooks.h"
#include "hunspell_fopen_hooks.h"
#endif