diff options
| author | Remi Collet <remi@remirepo.net> | 2021-11-19 09:13:55 +0100 | 
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2021-11-19 09:13:55 +0100 | 
| commit | 53fae6f1b8832e4d0d7aae041334be09b44ecf62 (patch) | |
| tree | c1c5e8a002b0722c28e64841388130c1ce00569b | |
| parent | c31db81a9fbe4d08fc71b7039e804776b31edc26 (diff) | |
disable libraqm usage on F35+
| -rw-r--r-- | gd.spec | 16 | 
1 files changed, 15 insertions, 1 deletions
@@ -13,7 +13,13 @@  #global short     %%(c=%%{commit}; echo ${c:0:7})  %bcond_without      webp +%if 0%{?fedora} >= 35 +# disabled as breaks vertical text +# See https://bugzilla.redhat.com/2022957 +%bcond_with         raqm +%else  %bcond_without      raqm +%endif  %if 0%{?fedora} >= 33  %bcond_without      avif @@ -45,7 +51,7 @@ Name:          gd  Name:          gd-last  %endif  Version:       2.3.3 -Release:       1%{?prever}%{?short}%{?dist} +Release:       3%{?prever}%{?short}%{?dist}  License:       MIT  URL:           http://libgd.github.io/  %if 0%{?commit:1} @@ -203,6 +209,7 @@ export CFLAGS="$CFLAGS -ffp-contract=off"  %configure \ +    --enable-gd-formats \      --with-tiff=%{_prefix} \  %if %{with raqm}      --with-raqm \ @@ -279,6 +286,13 @@ grep %{version} $RPM_BUILD_ROOT%{_libdir}/pkgconfig/gdlib.pc  %changelog +* Fri Nov 19 2021 Remi Collet <remi@remirepo.net> - 2.3.3-3 +- disable libraqm usage on F35+ + +* Mon Sep 20 2021 Remi Collet <remi@remirepo.net> - 2.3.3-2 +- Explicitly enable gd/gd2 formats, wanted by perl bindings (#2005916) +- open https://github.com/libgd/libgd/pull/776 +  * Mon Sep 13 2021 Remi Collet <remi@remirepo.net> - 2.3.3-1  - update to 2.3.3  - open https://github.com/libgd/libgd/pull/766 missing macros  | 
