mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 16:42:41 +00:00
Add support for oci8 and pdo_oci extensions no longer bundled with PHP (#894)
This commit is contained in:
parent
040be88dae
commit
0609246374
1 changed files with 10 additions and 2 deletions
|
@ -2002,11 +2002,11 @@ installOracleInstantClient() {
|
|||
mv "$installOracleInstantClient_src" "$ORACLE_INSTANTCLIENT_LIBPATH"
|
||||
echo 'done.'
|
||||
fi
|
||||
if ! test -e "$ORACLE_INSTANTCLIENT_LIBPATH/sdk"; then
|
||||
if ! test -e "$ORACLE_INSTANTCLIENT_LIBPATH/sdk" && ! test -L "$ORACLE_INSTANTCLIENT_LIBPATH/sdk"; then
|
||||
printf 'Downloading Oracle Instant SDK v%s... ' "$installOracleInstantClient_version"
|
||||
installOracleInstantClient_src="$(getPackageSource $installOracleInstantClient_sdk)"
|
||||
ln -sf "$installOracleInstantClient_src/sdk" "$ORACLE_INSTANTCLIENT_LIBPATH/sdk"
|
||||
UNNEEDED_PACKAGE_LINKS="$UNNEEDED_PACKAGE_LINKS '$ORACLE_INSTANTCLIENT_LIBPATH/sdk'"
|
||||
UNNEEDED_PACKAGE_LINKS="$UNNEEDED_PACKAGE_LINKS $ORACLE_INSTANTCLIENT_LIBPATH/sdk"
|
||||
echo 'done.'
|
||||
fi
|
||||
case "$DISTRO" in
|
||||
|
@ -3207,6 +3207,14 @@ installRemoteModule() {
|
|||
fi
|
||||
fi
|
||||
;;
|
||||
oci8 | pdo_oci)
|
||||
installOracleInstantClient
|
||||
if test "$installRemoteModule_module" = oci8; then
|
||||
addConfigureOption with-oci8 "instantclient,$ORACLE_INSTANTCLIENT_LIBPATH"
|
||||
elif test "$installRemoteModule_module" = pdo_oci; then
|
||||
addConfigureOption with-pdo-oci "instantclient,$ORACLE_INSTANTCLIENT_LIBPATH"
|
||||
fi
|
||||
;;
|
||||
opencensus)
|
||||
if test -z "$installRemoteModule_version"; then
|
||||
installRemoteModule_version=alpha
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue