From 07f0cdcbb4c440302381a3310a5f9c69b7373a47 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Fri, 19 Mar 2021 09:08:54 +0100 Subject: [PATCH] Properly guard an include of . See comments at https://bugs.kde.org/show_bug.cgi?id=413547#c11. --- tests/arm64_features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.2