From e8d89ce28fee76652d1529a4258752bc33ebda5b Mon Sep 17 00:00:00 2001 From: chalonverse Date: Tue, 7 Jun 2022 16:31:27 -0700 Subject: [PATCH] < should be <= --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index c4f2e8c04..3f51589ff 100755 --- a/configure +++ b/configure @@ -25090,7 +25090,7 @@ $as_echo_n "checking for d3d12 Windows SDK version... " >&6; } #include #include -#if WDK_NTDDI_VERSION < 0x0A000008 +#if WDK_NTDDI_VERSION <= 0x0A000008 asdf #endif diff --git a/configure.ac b/configure.ac index b393c3b5c..9a9248b48 100644 --- a/configure.ac +++ b/configure.ac @@ -3268,7 +3268,7 @@ CheckDIRECTX() AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include #include -#if WDK_NTDDI_VERSION < 0x0A000008 +#if WDK_NTDDI_VERSION <= 0x0A000008 asdf #endif ]],[])], [have_d3d12=yes],[])