From: Daniel Stenberg Date: Mon, 17 May 2021 11:20:54 +0000 (+0200) Subject: github: inhibit deprecated declarations for clang on macOS X-Git-Tag: curl-7_77_0~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e53a0f6833f9f2564686d36adee6dee844f3e109;p=thirdparty%2Fcurl.git github: inhibit deprecated declarations for clang on macOS ... as they otherwise cause ldap build errors in the CI. Fixes #7081 Closes #7082 --- diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index a017850680..3dc86b2c7c 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -98,7 +98,7 @@ jobs: compiler: - CC: clang CXX: clang++ - CFLAGS: "-mmacosx-version-min=10.15" + CFLAGS: "-mmacosx-version-min=10.15 -Wno-deprecated-declarations" - CC: gcc-8 CXX: g++-8 CFLAGS: "-mmacosx-version-min=10.15 -Wno-error=undef -Wno-error=conversion"