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:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user