From 7522652ad2a38954a817068288fc27a769eede9d Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Tue, 20 Jan 2026 12:40:06 +0100 Subject: [PATCH] mfulc_des_brute: fix for MacOSX brew compilation --- tools/mfulc_des_brute/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/mfulc_des_brute/Makefile b/tools/mfulc_des_brute/Makefile index d51feff45..0009385be 100644 --- a/tools/mfulc_des_brute/Makefile +++ b/tools/mfulc_des_brute/Makefile @@ -15,8 +15,8 @@ endif # OS X needs linking to openssl ifeq ($(USE_BREW),1) - MYCFLAGS += -I$(BREW_PREFIX)/opt/openssl@3/include -I$(BREW_PREFIX)/opt/openssl@3.5/include - MYLDFLAGS += -L$(BREW_PREFIX)/opt/openssl@3/lib -L$(BREW_PREFIX)/opt/openssl@3.5/lib + MYCFLAGS += -I$(BREW_PREFIX)/opt/openssl@3/include -I$(BREW_PREFIX)/opt/openssl@3.6/include + MYLDFLAGS += -L$(BREW_PREFIX)/opt/openssl@3/lib -L$(BREW_PREFIX)/opt/openssl@3.6/lib endif ifeq ($(USE_MACPORTS),1)