From d233dcce085e046a68cb25ba4dd626ad5fbb9add Mon Sep 17 00:00:00 2001 From: Agustin Gianni Date: Thu, 15 Dec 2022 20:27:42 +0100 Subject: [PATCH] Meta: Add libssl-dev as a dependency to the devcontainer The library `libssl-dev` was missing from the installed dependencies. This made impossible to compile the system on a devcontainer. --- .devcontainer/serenity/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/serenity/install.sh b/.devcontainer/serenity/install.sh index bf98846b728..6039ac849d1 100755 --- a/.devcontainer/serenity/install.sh +++ b/.devcontainer/serenity/install.sh @@ -36,7 +36,7 @@ if [ "${ENABLE_LADYBIRD}" = "true" ]; then apt install -y libgl1-mesa-dev qt6-base-dev qt6-tools-dev-tools qt6-wayland fi if [ "${ENABLE_SERENITY}" = "true" ]; then - apt install -y curl libmpfr-dev libmpc-dev libgmp-dev e2fsprogs genext2fs qemu-system-gui qemu-system-x86 qemu-utils rsync unzip texinfo + apt install -y curl libmpfr-dev libmpc-dev libgmp-dev e2fsprogs genext2fs qemu-system-gui qemu-system-x86 qemu-utils rsync unzip texinfo libssl-dev fi ### Ensure new enough host compiler is available