diff options
author | jbeich <jbeich@FreeBSD.org> | 2015-08-26 14:38:32 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2015-08-26 14:38:32 +0800 |
commit | f5e960b642923548e67be95d72e95034b9835a61 (patch) | |
tree | 2326c0dcbe308c1ec8225b5c5da94be764aa4e34 /mail | |
parent | 9d247abc8ff733f6d5ee18b5ec9240cb248d4411 (diff) | |
download | freebsd-ports-gnome-f5e960b642923548e67be95d72e95034b9835a61.tar.gz freebsd-ports-gnome-f5e960b642923548e67be95d72e95034b9835a61.tar.zst freebsd-ports-gnome-f5e960b642923548e67be95d72e95034b9835a61.zip |
gecko: add INTEGER_SAMPLES option
arm use S16 samples and libtremor since Firefox 34. So, adjust
dependencies and make it controllable (for testing on x86).
Note, arm is still BROKEN until ports/202642.
https://bugzilla.mozilla.org/show_bug.cgi?id=1047791
Diffstat (limited to 'mail')
-rw-r--r-- | mail/thunderbird/files/patch-sample-type | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mail/thunderbird/files/patch-sample-type b/mail/thunderbird/files/patch-sample-type new file mode 100644 index 000000000000..fff99f4b1e3e --- /dev/null +++ b/mail/thunderbird/files/patch-sample-type @@ -0,0 +1,13 @@ +# Let ports handle default sample type + +--- mozilla/configure.in~ ++++ mozilla/configure.in +@@ -5144,7 +5144,7 @@ dnl Use integers over floats for audio o + dnl (regarless of the CPU architecture, because audio + dnl backends for those platforms don't support floats. We also + dnl use integers on ARM with other OS, because it's more efficient. +-if test "$OS_TARGET" = "Android" -o "$CPU_ARCH" = "arm"; then ++if test -n "$MOZ_INTEGER_SAMPLES"; then + MOZ_SAMPLE_TYPE_S16=1 + AC_DEFINE(MOZ_SAMPLE_TYPE_S16) + AC_SUBST(MOZ_SAMPLE_TYPE_S16) |