From 47df6f5a5ddf44e46cc7fabf287a10e9efc9e2aa Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 10 Jun 2023 16:51:41 +0200 Subject: [PATCH 1/2] vagrant: use debian/bookworm64 box --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 6947b7b3f..fd5931966 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -376,7 +376,7 @@ Vagrant.configure(2) do |config| end config.vm.define "bookworm64" do |b| - b.vm.box = "debian/testing64" + b.vm.box = "debian/bookworm64" b.vm.provider :virtualbox do |v| v.memory = 1024 + $wmem end From 45e00f9df85b683b62626f9f3422cb5a6f0f7cb8 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 10 Jun 2023 16:54:08 +0200 Subject: [PATCH 2/2] vagrant: darwin64 box: install openssl after xxhash otherwise a openssl build error might manifest in complaints about xxhash not being installed. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index fd5931966..022b12810 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -111,7 +111,7 @@ def packages_darwin sudo softwareupdate --install --all which brew || CI=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" brew update > /dev/null - brew install pkg-config readline openssl@1.1 xxhash zstd lz4 xz + brew install pkg-config readline xxhash zstd lz4 xz openssl@1.1 brew install --cask macfuse # brew upgrade # upgrade everything (takes rather long) echo 'export PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig' >> ~vagrant/.bash_profile