Skip to content

Commit de30f8c

Browse files
authored
Fix installing brotli in Debian Jessie (#1204)
1 parent 147062e commit de30f8c

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

install-php-extensions

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3251,6 +3251,16 @@ installRemoteModule() {
32513251
installRemoteModule_manuallyInstalled=1
32523252
installRemoteModule_ini_extra="$(printf '%sblackfire.agent_socket=tcp://blackfire:8307\n' "$installRemoteModule_ini_extra")"
32533253
;;
3254+
brotli)
3255+
if test -z "$installRemoteModule_version"; then
3256+
case "$DISTRO_VERSION" in
3257+
debian@8)
3258+
# In Debian Jessie we have brotli version 0.18.2
3259+
installRemoteModule_version=0.18.2
3260+
;;
3261+
esac
3262+
fi
3263+
;;
32543264
cassandra)
32553265
installRemoteModule_src="$(getPackageSource https://github.com/nano-interactive/ext-cassandra/tarball/1cf12c5ce49ed43a2c449bee4b7b23ce02a37bf0)"
32563266
cd "$installRemoteModule_src/ext"

0 commit comments

Comments
 (0)