From 1c974092e44e892ebe6abc69886e05568d3471be Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 19 Dec 2020 01:00:07 +0100 Subject: [PATCH] express: Fix compile error with certain macOS SDKs --- panda/src/express/zipArchive.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/panda/src/express/zipArchive.h b/panda/src/express/zipArchive.h index 3a97cbcd21..cc0153cf67 100644 --- a/panda/src/express/zipArchive.h +++ b/panda/src/express/zipArchive.h @@ -26,6 +26,9 @@ #include "pvector.h" #include "vector_uchar.h" +// Defined by Cocoa, conflicts with the definition below. +#undef verify + /** * A file that contains a set of files. */