download_and_compile.sh: add libssl-dev as mandatory dep for CMake
Unless SSL support is turned off, libssl-dev is needed to build CMake. Thanks to Jeff Davis for the report.
This commit is contained in:
parent
819074136a
commit
fa0dcb5d4d
1 changed files with 1 additions and 1 deletions
|
@ -691,7 +691,7 @@ if [[ "$DOWNLOAD_PACKAGES" = "y" ]]; then
|
||||||
# CMake
|
# CMake
|
||||||
if _elementIn "CMAKE" "${WHATTOBUILD[@]}"; then
|
if _elementIn "CMAKE" "${WHATTOBUILD[@]}"; then
|
||||||
PKG+=(libarchive-dev libbz2-dev libexpat1-dev libjsoncpp-dev liblzma-dev
|
PKG+=(libarchive-dev libbz2-dev libexpat1-dev libjsoncpp-dev liblzma-dev
|
||||||
libncurses5-dev procps zlib1g-dev)
|
libncurses5-dev libssl-dev procps zlib1g-dev)
|
||||||
else
|
else
|
||||||
PKG+=(cmake)
|
PKG+=(cmake)
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue