From: Julian Seward Date: Fri, 19 Mar 2021 08:08:54 +0000 (+0100) Subject: Properly guard an include of . X-Git-Tag: VALGRIND_3_17_0~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07f0cdcbb4c440302381a3310a5f9c69b7373a47;p=thirdparty%2Fvalgrind.git Properly guard an include of . See comments at https://bugs.kde.org/show_bug.cgi?id=413547#c11. --- diff --git a/tests/arm64_features.c b/tests/arm64_features.c index 916a4e24dd..ebfc774187 100644 --- a/tests/arm64_features.c +++ b/tests/arm64_features.c @@ -1,7 +1,7 @@ #include #include #include -#if !defined(__APPLE__) +#if !defined(__APPLE__) && defined(VGA_arm64) #include #endif