diff options
author | Martin Stransky <stransky@redhat.com> | 2017-03-13 14:42:57 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2017-03-13 14:42:57 +0100 |
commit | 293fe7d97737d14e3ddeef40052992a05e8a38ea (patch) | |
tree | e56ba5d9517253b15075d47121ad1cd08cdf94da | |
parent | Merge branch 'master' into f24 (diff) | |
parent | Enable ALSA backend behind pref (rhbz#1431371) (diff) | |
download | librewolf-fedora-ff-293fe7d97737d14e3ddeef40052992a05e8a38ea.tar.gz librewolf-fedora-ff-293fe7d97737d14e3ddeef40052992a05e8a38ea.tar.bz2 librewolf-fedora-ff-293fe7d97737d14e3ddeef40052992a05e8a38ea.zip |
Merge branch 'master' into f24
-rw-r--r-- | firefox.spec | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec index f5ed782..0c1c917 100644 --- a/firefox.spec +++ b/firefox.spec @@ -1,3 +1,6 @@ +# Use ALSA backend? +%define alsa_backend 0 + # Use system nspr/nss? %define system_nss 1 @@ -100,7 +103,7 @@ Summary: Mozilla Firefox Web browser Name: firefox Version: 52.0 -Release: 4%{?pre_tag}%{?dist} +Release: 5%{?pre_tag}%{?dist} URL: https://www.mozilla.org/firefox/ License: MPLv1.1 or GPLv2+ or LGPLv2+ Group: Applications/Internet @@ -182,7 +185,9 @@ BuildRequires: pkgconfig(xt) BuildRequires: pkgconfig(xrender) BuildRequires: pkgconfig(hunspell) BuildRequires: pkgconfig(libstartup-notification-1.0) +%if %{?alsa_backend} BuildRequires: pkgconfig(alsa) +%endif BuildRequires: pkgconfig(libnotify) >= %{libnotify_version} BuildRequires: pkgconfig(dri) BuildRequires: pkgconfig(libcurl) @@ -353,6 +358,10 @@ echo "ac_add_options --enable-system-ffi" >> .mozconfig echo "ac_add_options --disable-elf-hack" >> .mozconfig %endif +%if %{?alsa_backend} +echo "ac_add_options --enable-alsa" >> .mozconfig +%endif + %if %{?debug_build} echo "ac_add_options --enable-debug" >> .mozconfig echo "ac_add_options --disable-optimize" >> .mozconfig @@ -823,6 +832,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : #--------------------------------------------------------------------- %changelog +* Mon Mar 13 2017 Martin Stransky <stransky@redhat.com> - 52.0-5 +- Enable ALSA backend behind pref (rhbz#1431371) + * Fri Mar 10 2017 Martin Stransky <stransky@redhat.com> - 52.0-4 - Fixed e10s enablement (rhbz#1398717) |