Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit 60d0df8

Browse files
authored
Build mongo extension by default. Make mongo enablable via extension enabler (#420)
1 parent 106dbb8 commit 60d0df8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

deb-package-builder/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ PHP_VERSIONS=${1}
4141
EXTENSIONS=${2}
4242
if [ -z "$EXTENSIONS" ]; then
4343
# Explicitly declaring because some extenions depend on others (pq depends on raphf)
44-
EXTENSIONS="amqp,apcu,apcu_bc,apm,bitset,cassandra,couchbase,ds,eio,ev,event,grpc,hprose,imagick,igbinary,jsonc,jsond,krb5,libsodium,lua,lzf,mailparse,memcache,memcached,memprof,mongodb,oauth,opencensus,phalcon,protobuf,raphf,pq,rdkafka,redis,seaslog,stackdriver_debugger,stomp,suhosin,swoole,sync,tcpwrap,timezonedb,v8js,vips,yaconf,yaf,yaml"
44+
EXTENSIONS="amqp,apcu,apcu_bc,apm,bitset,cassandra,couchbase,ds,eio,ev,event,grpc,hprose,imagick,igbinary,jsonc,jsond,krb5,libsodium,lua,lzf,mailparse,memcache,memcached,memprof,mongo,mongodb,oauth,opencensus,phalcon,protobuf,raphf,pq,rdkafka,redis,seaslog,stackdriver_debugger,stomp,suhosin,swoole,sync,tcpwrap,timezonedb,v8js,vips,yaconf,yaf,yaml"
4545
fi
4646

4747
LIBRARIES=${3}

php-base/build-scripts/install_extensions.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ class InstallExtensions
6767
'lua',
6868
'lzf',
6969
'memprof',
70+
'mongo',
7071
'seaslog',
7172
'stomp',
7273
'swoole',
@@ -85,6 +86,7 @@ class InstallExtensions
8586
'ds' => ['5.6'],
8687
'lua' => ['5.6'],
8788
'memcache' => ['7.0', '7.1', '7.2'],
89+
'mongo' => ['7.0', '7.1', '7.2'],
8890
'opencensus' => ['5.6'],
8991
'phalcon' => ['7.1', '7.2'],
9092
'stackdriver_debugger' => ['5.6'],

0 commit comments

Comments
 (0)