From fccd47b125c388aadde2392d26da89c5d5cf0270 Mon Sep 17 00:00:00 2001 From: R4SAS Date: Sat, 8 Nov 2025 01:24:02 +0300 Subject: [PATCH] [makefile] homebrew: expect openssl 3.5 for build, remove unused boost libraries linking --- Makefile.homebrew | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.homebrew b/Makefile.homebrew index 445d451d..bc425eb3 100644 --- a/Makefile.homebrew +++ b/Makefile.homebrew @@ -2,7 +2,7 @@ # brew install boost openssl@3 cmake make BREWROOT = /opt/homebrew BOOSTROOT = ${BREWROOT}/opt/boost -SSLROOT = ${BREWROOT}/opt/openssl@3 +SSLROOT = ${BREWROOT}/opt/openssl@3.5 UPNPROOT = ${BREWROOT}/opt/miniupnpc CXXFLAGS ?= ${CXX_DEBUG} -Wall -Wno-overloaded-virtual @@ -16,7 +16,7 @@ ifeq ($(shell uname -m), x86_64) endif ifeq ($(USE_STATIC),yes) - LDLIBS = -lz ${SSLROOT}/lib/libcrypto.a ${SSLROOT}/lib/libssl.a ${BOOSTROOT}/lib/libboost_system.a ${BOOSTROOT}/lib/libboost_filesystem.a ${BOOSTROOT}/lib/libboost_program_options.a + LDLIBS = -lz ${SSLROOT}/lib/libcrypto.a ${SSLROOT}/lib/libssl.a ${BOOSTROOT}/lib/libboost_program_options.a ifeq ($(USE_UPNP),yes) LDLIBS += ${UPNPROOT}/lib/libminiupnpc.a endif