mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-08 16:17:20 +00:00
Fix detecting the so module for the apcu_bc PHP extension (#544)
Test: apcu_bc
This commit is contained in:
parent
65347eb080
commit
36404177eb
1 changed files with 3 additions and 0 deletions
|
@ -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"
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue