From 2ffae5a439bff248fdf5ed77dfbdf98059b4069a Mon Sep 17 00:00:00 2001 From: James Park Date: Mon, 7 Dec 2020 10:36:05 -0800 Subject: [PATCH] xmlconfig: Disable WITH_XMLCONFIG on Windows This change was stomped by recent refactor. Fixes: 1618bd1bee6 ("xmlconfig: Add unit tests for recent bugs in the driconf rewrite.") Reviewed-by: Eric Anholt Part-of: --- src/util/xmlconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/xmlconfig.h b/src/util/xmlconfig.h index d0bb0b32221..d4fc2bac09a 100644 --- a/src/util/xmlconfig.h +++ b/src/util/xmlconfig.h @@ -39,7 +39,7 @@ extern "C" { #endif -#ifdef ANDROID +#if defined(ANDROID) || defined(_WIN32) #define WITH_XMLCONFIG 0 #else #define WITH_XMLCONFIG 1