add back required -lgomp for imagick extension

This commit is contained in:
DubbleClick 2023-10-27 17:33:43 +02:00
parent e00908d8cb
commit e84a246dd2

View File

@ -14,6 +14,7 @@ class imagick extends Extension
{
// imagick may call omp_pause_all which requires -lgomp
$extra_libs = $this->builder->getOption('extra-libs', '');
$extra_libs .= ' -lgomp ';
$this->builder->setOption('extra-libs', $extra_libs);
return true;
}