Просмотр исходного кода

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

Kyle Smith 4 лет назад
Родитель
Сommit
a88cf8fab7
2 измененных файлов с 5 добавлено и 1 удалено
  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
+  }
 }