mirror of https://github.com/zulip/zulip.git
provision: Fix missing <sasl/sasl.h> headers during provision.
This fixes the error of missing sasl.h when compiling python-ldap from source during provision.
This commit is contained in:
parent
6e0d4b9502
commit
cc9dc07b07
|
@ -142,6 +142,13 @@ COMMON_DEPENDENCIES = [
|
|||
"libappindicator1",
|
||||
"xdg-utils",
|
||||
# Puppeteer dependencies end here.
|
||||
|
||||
# Fixes missing sasl.h headers during
|
||||
# python-ldap installation.
|
||||
"libsasl2-dev",
|
||||
"gcc",
|
||||
"python-dev",
|
||||
|
||||
]
|
||||
|
||||
UBUNTU_COMMON_APT_DEPENDENCIES = COMMON_DEPENDENCIES + [
|
||||
|
|
Loading…
Reference in New Issue