PlatformIO: set build.libArchive to false (closes #1550)

This commit is contained in:
Kyle Smith
2021-05-01 08:11:34 -04:00
committed by Benoit Blanchon
parent 2be528a3fa
commit a88cf8fab7
2 changed files with 5 additions and 1 deletions

View File

@ -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
>

View File

@ -17,5 +17,8 @@
"extras"
],
"frameworks": "*",
"platforms": "*"
"platforms": "*",
"build": {
"libArchive": false
}
}