summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2015-09-29 15:04:26 +0200
committerMartin Stransky <stransky@redhat.com>2015-09-29 15:04:26 +0200
commit90dc736a6c9848570455677e6a09ceb16384da1f (patch)
tree6d64dfe4966b6dde6ca5938d6d11f6e8b6b86241
parentRemoved redundant entries from mozconfig file (diff)
downloadlibrewolf-fedora-ff-90dc736a6c9848570455677e6a09ceb16384da1f.tar.gz
librewolf-fedora-ff-90dc736a6c9848570455677e6a09ceb16384da1f.tar.bz2
librewolf-fedora-ff-90dc736a6c9848570455677e6a09ceb16384da1f.zip
Enable Xinput2 (mozbz#1207973)
-rw-r--r--firefox.sh.in5
-rw-r--r--firefox.spec5
2 files changed, 9 insertions, 1 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 385a05c..98a8b0c 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -147,6 +147,11 @@ export GNOME_DISABLE_CRASH_DIALOG
##
export G_SLICE=always-malloc
+##
+## Enable Xinput2 (mozbz#1207973)
+##
+export MOZ_USE_XINPUT2=1
+
# OK, here's where all the real work gets done
diff --git a/firefox.spec b/firefox.spec
index 78cd798..a3ec3b7 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -86,7 +86,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 41.0
-Release: 6%{?pre_tag}%{?dist}
+Release: 7%{?pre_tag}%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -769,6 +769,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Tue Sep 29 2015 Martin Stransky <stransky@redhat.com> - 41.0-7
+- Enable Xinput2 (mozbz#1207973)
+
* Fri Sep 25 2015 Martin Stransky <stransky@redhat.com> - 41.0-6
- Rebuilt for old sqlite which is available in updates
bgstack15