diff --git a/wxWidgets-3_2.changes b/wxWidgets-3_2.changes index c40135c..14998f0 100644 --- a/wxWidgets-3_2.changes +++ b/wxWidgets-3_2.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Oct 9 13:48:14 UTC 2020 - Stefan Brüns + +- Fix unquoted bareword comparisons for RPM 4.16 compatibility + ------------------------------------------------------------------- Wed Sep 30 17:39:01 UTC 2020 - Stefan Brüns diff --git a/wxWidgets-3_2.spec b/wxWidgets-3_2.spec index 149239d..ff321f4 100644 --- a/wxWidgets-3_2.spec +++ b/wxWidgets-3_2.spec @@ -104,17 +104,17 @@ BuildRequires: libnotify-devel BuildRequires: libpng-devel BuildRequires: libtiff-devel BuildRequires: zlib-devel -%if %{toolkit} == "gtk2" +%if "%{toolkit}" == "gtk2" BuildRequires: gnome-vfs2-devel BuildRequires: gtk2-devel %endif -%if %{toolkit} == "gtk3" +%if "%{toolkit}" == "gtk3" BuildRequires: pkgconfig(gtk+-3.0) %if %{with webview} BuildRequires: pkgconfig(webkit2gtk-4.0) %endif %endif -%if %{toolkit} == "qt" +%if "%{toolkit}" == "qt" BuildRequires: pkgconfig(Qt5Core) >= 5.2.1 BuildRequires: pkgconfig(Qt5Gui) >= 5.2.1 BuildRequires: pkgconfig(Qt5OpenGL) >= 5.2.1 @@ -288,13 +288,13 @@ SDL based sound plugin for the wxWidgets cross-platform GUI. %package devel Summary: Development files for %{name} Group: Development/Libraries/C and C++ -%if %{toolkit} == "gtk2" +%if "%{toolkit}" == "gtk2" Requires: gtk2-devel %endif -%if %{toolkit} == "gtk3" +%if "%{toolkit}" == "gtk3" Requires: pkgconfig(gtk+-3.0) %endif -%if %{toolkit} == "qt" +%if "%{toolkit}" == "qt" Requires: pkgconfig(Qt5OpenGL) >= 5.2.1 Requires: pkgconfig(Qt5Widgets) >= 5.2.1 %endif @@ -320,19 +320,19 @@ Requires: pkgconfig(gl) Requires: pkgconfig(glu) Provides: wxWidgets-any-devel Conflicts: wxWidgets-any-devel -%if %{toolkit} == "gtk2" +%if "%{toolkit}" == "gtk2" Provides: wxGTK2-devel = %version-%release Provides: wxWidgets-devel = %version-%release # Name up to openSUSE 11.3 and up to wxGTK-2.8.x: Provides: wxGTK-devel = %version-%release Obsoletes: wxGTK-devel < %version-%release %endif -%if %{toolkit} == "gtk3" +%if "%{toolkit}" == "gtk3" %if "%{flavor}" != "GTK3-nostl" Provides: wxGTK3-devel = %version-%release %endif %endif -%if %{toolkit} == "qt" +%if "%{toolkit}" == "qt" Provides: wxQt-devel = %version-%release %endif @@ -363,7 +363,7 @@ autoconf -f -i %configure \ --enable-vendor=%variant \ -%if %{toolkit} == "qt" +%if "%{toolkit}" == "qt" --with-qt \ %else --with-gtk=%gtk_version \