From 45f5eb0615f1458e117de30b616fe797f2ce03e1 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 16 Jul 2020 04:37:14 -0400 Subject: [PATCH] configure: On Apple platforms, only exclude Vulkan on x86. This catches both x86-64 and ARM devices. --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index cb1423e4b..f247ccbef 100755 --- a/configure +++ b/configure @@ -22674,7 +22674,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext #include #include - #if !TARGET_CPU_X86_64 + #if TARGET_CPU_X86 #error Vulkan doesn't work on this configuration #endif diff --git a/configure.ac b/configure.ac index 6018a6db2..74817611d 100644 --- a/configure.ac +++ b/configure.ac @@ -2568,7 +2568,7 @@ CheckVulkan() #include #include - #if !TARGET_CPU_X86_64 + #if TARGET_CPU_X86 #error Vulkan doesn't work on this configuration #endif ],[