Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -592,16 +592,16 @@ download-zmq: ## Install ZMQ dependencies based on OS/ARCH
echo "Installing ZMQ dependencies..."; \
if [ "$(TARGETOS)" = "linux" ]; then \
if [ -x "$$(command -v apt)" ]; then \
apt update && apt install -y libzmq3-dev; \
apt update && apt install -y libzmq3-dev pkg-config; \
elif [ -x "$$(command -v dnf)" ]; then \
dnf install -y zeromq-devel; \
dnf install -y zeromq-devel pkgconfig; \
else \
echo "Unsupported Linux package manager. Install libzmq manually."; \
exit 1; \
fi; \
elif [ "$(TARGETOS)" = "darwin" ]; then \
if [ -x "$$(command -v brew)" ]; then \
brew install zeromq; \
brew install zeromq pkg-config; \
else \
echo "Homebrew is not installed and is required to install zeromq. Install it from https://brew.sh/"; \
exit 1; \
Expand Down