From a88cf8fab7f63a7616db49dbedbe126b5cbda0ee Mon Sep 17 00:00:00 2001 From: Kyle Smith Date: Sat, 1 May 2021 08:11:34 -0400 Subject: [PATCH] PlatformIO: set build.libArchive to false (closes #1550) --- CHANGELOG.md | 1 + library.json | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67756434..4106cbcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ HEAD * Fixed member-call-on-null-pointer in `getMember()` when array is empty * `serializeMsgPack(doc, buffer, size)` doesn't add null-terminator anymore (issue #1545) * `serializeJson(doc, buffer, size)` adds null-terminator only if there is enough room +* PlatformIO: set `build.libArchive` to `false` (PR #1550 by @askreet) > ### BREAKING CHANGES > diff --git a/library.json b/library.json index e9951ff4..32bd58a2 100644 --- a/library.json +++ b/library.json @@ -17,5 +17,8 @@ "extras" ], "frameworks": "*", - "platforms": "*" + "platforms": "*", + "build": { + "libArchive": false + } }