From 15a5ea173a50c36b189f17953e8496f0a7429123 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Fri, 12 Feb 2021 09:07:54 +0100 Subject: [PATCH 1/3] Add support for gmagick with PHP 8.0 --- data/supported-extensions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/supported-extensions b/data/supported-extensions index 2065b76..54e0ada 100644 --- a/data/supported-extensions +++ b/data/supported-extensions @@ -15,7 +15,7 @@ gd 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 gearman 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 geospatial 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 gettext 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 -gmagick 5.5 5.6 7.0 7.1 7.2 7.3 7.4 +gmagick 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 gmp 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 gnupg 5.5 5.6 7.0 7.1 7.2 7.3 7.4 grpc 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 From ead8279200ec0118c9a67870cadfbc2fc118cb90 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Fri, 12 Feb 2021 09:12:02 +0100 Subject: [PATCH 2/3] Faster gmagick compilation --- install-php-extensions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-php-extensions b/install-php-extensions index 3b4cb0c..d8de6e8 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -1093,7 +1093,7 @@ setTargetTriplet() { # The number of processors to be used getCompilationProcessorCount() { case "$1" in - amqp | bcmath | bz2 | calendar | exif | gd | geospatial | gettext | grpc | http | imagick | intl | mysqli | opcache | pcntl | pdo_mysql | protobuf | redis | ssh2 | soap | sockets | tidy | xdebug | xsl | yaml | zip) + amqp | bcmath | bz2 | calendar | exif | gd | geospatial | gettext | gmagick | grpc | http | imagick | intl | mysqli | opcache | pcntl | pdo_mysql | protobuf | redis | ssh2 | soap | sockets | tidy | xdebug | xsl | yaml | zip) # These extensions support parallel compilation getProcessorCount ;; From 7b97482317b20d57e1654a45932b664ed1602533 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Fri, 12 Feb 2021 09:15:19 +0100 Subject: [PATCH 3/3] Fix installing gmagick on Alpine --- install-php-extensions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-php-extensions b/install-php-extensions index d8de6e8..95a87ad 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -519,7 +519,7 @@ buildRequiredPackageLists() { buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile gettext-dev" ;; gmagick@alpine) - buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent graphicsmagick" + buildRequiredPackageLists_persistent="$buildRequiredPackageLists_persistent graphicsmagick libgomp" buildRequiredPackageLists_volatile="$buildRequiredPackageLists_volatile graphicsmagick-dev libtool" ;; gmagick@debian)