Blame SOURCES/0001-mustard-Work-around-broken-fbdev-headers.patch

877270
From a4fc2f3a55776018eda20e09c11b3710f8f0e542 Mon Sep 17 00:00:00 2001
877270
From: Adam Jackson <ajax@redhat.com>
877270
Date: Fri, 26 Oct 2018 14:16:17 -0400
877270
Subject: [PATCH xserver] mustard: Work around broken fbdev headers
877270
877270
This configure check is somewhat pointless as we have our own copy of
877270
the fbdev ioctl declarations. There's also a bug in the version of the
877270
kernel headers I happen to want to build against, where an IS_ENABLED()
877270
escaped into uapi like it oughtn't.
877270
877270
Nerf the test so we build the right fbdevhw code.
877270
877270
Signed-off-by: Adam Jackson <ajax@redhat.com>
877270
---
877270
 configure.ac | 3 +--
877270
 1 file changed, 1 insertion(+), 2 deletions(-)
877270
877270
diff --git a/configure.ac b/configure.ac
877270
index 57a2331024..2b8477ed61 100644
877270
--- a/configure.ac
877270
+++ b/configure.ac
877270
@@ -197,8 +197,7 @@ AC_CHECK_HEADERS([linux/agpgart.h sys/agpio.h sys/agpgart.h], AGP=yes)
877270
 AM_CONDITIONAL(AGP, [test "x$AGP" = xyes])
877270
 
877270
 dnl fbdev header
877270
-AC_CHECK_HEADERS([linux/fb.h], FBDEV=yes)
877270
-AM_CONDITIONAL(FBDEVHW, [test "x$FBDEV" = xyes])
877270
+AM_CONDITIONAL(FBDEVHW, true)
877270
 
877270
 dnl FreeBSD kldload support (sys/linker.h)
877270
 AC_CHECK_HEADERS([sys/linker.h],
877270
-- 
877270
2.19.1
877270