39 lines
1.2 KiB
Diff
39 lines
1.2 KiB
Diff
From ca72e41e15fb9b59b367cba2baca0d5467dcc8c7 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Michel=20D=C3=A4nzer?= <michel.daenzer@amd.com>
|
|
Date: Fri, 5 Jul 2019 11:01:56 +0200
|
|
Subject: [PATCH xf86-video-mach64 2/4] configure: Include xorg-server.h before
|
|
exa.h
|
|
|
|
Fixes EXA detection spuriously failing with current xserver.
|
|
---
|
|
configure.ac | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
diff --git configure.ac configure.ac
|
|
index d3933b2..b8b722b 100644
|
|
--- configure.ac
|
|
+++ configure.ac
|
|
@@ -169,7 +169,8 @@ if test "x$EXA" = xyes; then
|
|
SAVE_CPPFLAGS="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS $XORG_CFLAGS"
|
|
AC_CHECK_HEADER(exa.h,
|
|
- [have_exa_h="yes"], [have_exa_h="no"])
|
|
+ [have_exa_h="yes"], [have_exa_h="no"],
|
|
+ [#include <xorg-server.h>])
|
|
CPPFLAGS="$SAVE_CPPFLAGS"
|
|
else
|
|
AC_MSG_RESULT(no)
|
|
@@ -180,7 +181,8 @@ CPPFLAGS="$CPPFLAGS $XORG_CFLAGS"
|
|
if test "x$have_exa_h" = xyes; then
|
|
AC_MSG_CHECKING([whether EXA version is at least 2.0.0])
|
|
AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[
|
|
-#include "exa.h"
|
|
+#include <xorg-server.h>
|
|
+#include <exa.h>
|
|
#if EXA_VERSION_MAJOR < 2
|
|
#error OLD EXA!
|
|
#endif
|
|
--
|
|
2.25.0
|
|
|