summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-05-17 13:20:54 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-05-17 22:45:46 +0200
commite53a0f6833f9f2564686d36adee6dee844f3e109 (patch)
tree6349956a0623ea26d8f6c010f14f2c5fab6c045a
parent0c55fbab45bedb761766109d41c3da49c4bc66c6 (diff)
downloadcurl-e53a0f6833f9f2564686d36adee6dee844f3e109.tar.gz
github: inhibit deprecated declarations for clang on macOS
... as they otherwise cause ldap build errors in the CI. Fixes #7081 Closes #7082
-rw-r--r--.github/workflows/macos.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index a01785068..3dc86b2c7 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"