Parcourir la source

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

Kyle Smith il y a 4 ans
Parent
commit
a88cf8fab7
2 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 1 0
      CHANGELOG.md
  2. 4 1
      library.json

+ 1 - 0
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
 >

+ 4 - 1
library.json

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