mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 08:00:31 -04:00
- update firefox-esr, thunderbird and libxul to 17.0.7 - update nspr to 4.10 - OSS support was removed upstream, only ALSA and PulseAudio are supported from now on. Security: b3fcb387-de4b-11e2-b1c6-0025905a4771 In collaboration with: Jan Beich <jbeich@tormail.org>
24 lines
674 B
Text
24 lines
674 B
Text
--- configure.in~
|
|
+++ configure.in
|
|
@@ -5364,15 +5364,18 @@ AC_SUBST(MOZ_SRTP)
|
|
|
|
dnl Use integers over floats for audio on B2G and Android, because audio
|
|
dnl backends for those platforms don't support floats.
|
|
-if test "$OS_TARGET" = "Android"; then
|
|
+case "$target" in
|
|
+*-android*|*-linuxandroid*|*-dragonfly*|*-freebsd*|*-netbsd*|*-openbsd*)
|
|
MOZ_SAMPLE_TYPE_S16=1
|
|
AC_DEFINE(MOZ_SAMPLE_TYPE_S16)
|
|
AC_SUBST(MOZ_SAMPLE_TYPE_S16)
|
|
-else
|
|
+;;
|
|
+*)
|
|
MOZ_SAMPLE_TYPE_FLOAT32=1
|
|
AC_DEFINE(MOZ_SAMPLE_TYPE_FLOAT32)
|
|
AC_SUBST(MOZ_SAMPLE_TYPE_FLOAT32)
|
|
-fi
|
|
+;;
|
|
+esac
|
|
|
|
dnl ========================================================
|
|
dnl = Disable Speech API code
|