From 1b31dd16985d43f8cd7ac92b035dc52f60fd4119 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Tue, 3 Aug 2021 08:38:31 +0200 Subject: [PATCH] Use libcmark 0.30.1 whenever possible Test: cmark --- install-php-extensions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-php-extensions b/install-php-extensions index 97ef1e4..eea6063 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -1631,11 +1631,11 @@ installRemoteModule() { if ! test -e /usr/local/lib/libcmark.so && ! test -e /usr/local/lib64/libcmark.so && ! test -e /usr/lib/libcmark.so && ! test -e /usr/lib64/libcmark.so && ! test -e /lib/libcmark.so; then case "$DISTRO_VERSION" in debian@8) - # cmark library version 0.30.0 requires cmake 3.3+ (debian jessie comes with cmake 3.0) + # See https://github.com/commonmark/cmark/issues/384 installRemoteModule_tmp=0.29.0 ;; *) - installRemoteModule_tmp=0.30.0 + installRemoteModule_tmp=0.30.1 ;; esac cd "$(getPackageSource https://github.com/commonmark/cmark/archive/$installRemoteModule_tmp.tar.gz)"