From 36404177ebb83a7de9cba667231d53da746b8a45 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Fri, 25 Mar 2022 10:02:46 +0100 Subject: [PATCH] Fix detecting the so module for the apcu_bc PHP extension (#544) Test: apcu_bc --- install-php-extensions | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install-php-extensions b/install-php-extensions index de8167c..fd0b6ab 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -1377,6 +1377,9 @@ getCompilationProcessorCount() { # The absolute path of the PHP extension file (or nothing if the file can't be found) getModuleFullPath() { case "$1" in + apcu_bc) + getModuleFullPath_path="$PHP_EXTDIR/apc.so" + ;; *) getModuleFullPath_path="$PHP_EXTDIR/$1.so" ;;