From 566f61f7fcd1964eaad429e9282951f5bd2c5526 Mon Sep 17 00:00:00 2001 From: Maxime Le Moine Date: Fri, 26 Jul 2019 23:05:13 +0200 Subject: [PATCH] Don't include inttypes if compiling for Mac/iOS --- libarchive/archive.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libarchive/archive.h b/libarchive/archive.h index 7b196e7bb..263d5ea35 100644 --- a/libarchive/archive.h +++ b/libarchive/archive.h @@ -52,7 +52,7 @@ */ #if defined(__BORLANDC__) && __BORLANDC__ >= 0x560 # include -#elif !defined(__WATCOMC__) && !defined(_MSC_VER) && !defined(__INTERIX) && !defined(__BORLANDC__) && !defined(_SCO_DS) && !defined(__osf__) +#elif !defined(__WATCOMC__) && !defined(_MSC_VER) && !defined(__INTERIX) && !defined(__BORLANDC__) && !defined(_SCO_DS) && !defined(__osf__) && !defined(__CLANG_INTTYPES_H) # include #endif -- 2.47.2