From 88a98103f7b29336661e7dfee23f44ae865c7adb Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Fri, 31 Oct 2014 10:43:18 +0100 Subject: Gtk3 support - WIP --- firefox.spec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'firefox.spec') diff --git a/firefox.spec b/firefox.spec index 262fda7..6a4b656 100644 --- a/firefox.spec +++ b/firefox.spec @@ -10,9 +10,17 @@ %define system_ffi 1 %endif +# Build for Gtk3? +%define toolkit_gtk3 0 + # Use system cairo? %define system_cairo 0 +# Gtk3 needs system cairo +%if %{toolkit_gtk3} +%define system_cairo 1 +%endif + %define enable_gstreamer 1 # Separated plugins are supported on x86(64) only @@ -155,7 +163,11 @@ BuildRequires: zip BuildRequires: bzip2-devel BuildRequires: zlib-devel BuildRequires: libIDL-devel +%if %{toolkit_gtk3} +BuildRequires: gtk3-devel +%else BuildRequires: gtk2-devel +%endif BuildRequires: krb5-devel BuildRequires: pango-devel BuildRequires: freetype-devel >= %{freetype_version} @@ -289,6 +301,12 @@ cd %{tarballdir} %endif %{__cp} %{SOURCE24} mozilla-api-key +%if %{toolkit_gtk3} +echo "ac_add_options --enable-default-toolkit=cairo-gtk3" >> .mozconfig +%else +echo "ac_add_options --enable-default-toolkit=cairo-gtk2" >> .mozconfig +%endif + %if %{?system_nss} echo "ac_add_options --with-system-nspr" >> .mozconfig echo "ac_add_options --with-system-nss" >> .mozconfig -- cgit