From 4e1ec15a7c44b55de7779c64cf61af409979cb29 Mon Sep 17 00:00:00 2001 From: lwthiker Date: Tue, 29 Aug 2023 13:44:54 +0300 Subject: [PATCH] Fix BoringSSL include path A build error on Mac is caused due to the build using OpenSSL headers instead of BoringSSL. Attempt to fix that. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index d54f34f..1545e7d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -423,7 +423,7 @@ $(CURL_VERSION)/.chrome: $(chrome_libs) $(CURL_VERSION).tar.xz $(CURL_VERSION)/. config_flags="$$config_flags --with-ca-path=$(with_ca_path)"; \ fi; \ add_libs="-pthread"; \ - add_cflags="-I$(boringssl_install_dir)"; \ + add_cflags="-I$(boringssl_install_dir)/include"; \ } echo "Configuring curl with: $$config_flags"