From 6f3bf18656d8747c8c73a7b531bea67ac220904b Mon Sep 17 00:00:00 2001 From: Gabriel Jacobo Date: Thu, 30 Jan 2014 20:27:13 -0300 Subject: [PATCH] Detect Xrandr >= 1.2 at build time --- configure | 32 ++++++++++++++++++++++++-------- configure.in | 17 ++++++++++++----- 2 files changed, 36 insertions(+), 13 deletions(-) diff --git a/configure b/configure index 07bc1561be003..f9b61e12e21b0 100755 --- a/configure +++ b/configure @@ -20077,17 +20077,33 @@ else fi if test x$enable_video_x11_xrandr = xyes; then - definitely_enable_video_x11_xrandr=no - ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xrandr.h" "ac_cv_header_X11_extensions_Xrandr_h" "#include + definitely_enable_video_x11_xrandr=no + have_xrandr_h_hdr=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ -" -if test "x$ac_cv_header_X11_extensions_Xrandr_h" = xyes; then : - have_xrandr_h_hdr=yes -else - have_xrandr_h_hdr=no -fi + #include + #include + +int +main () +{ + + XRRScreenResources *res = NULL; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + have_xrandr_h_hdr=yes + $as_echo "#define SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH 1" >>confdefs.h + + SUMMARY_video_x11="${SUMMARY_video_x11} xinput2_multitouch" + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x$have_xrandr_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then echo "-- dynamic libXrandr -> $xrandr_lib" diff --git a/configure.in b/configure.in index a38abd4ba119c..9eb0805d99e47 100644 --- a/configure.in +++ b/configure.in @@ -1508,12 +1508,19 @@ XIAllowTouchEvents(Display *a,int b,unsigned int c,Window d,int f) AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]), , enable_video_x11_xrandr=yes) if test x$enable_video_x11_xrandr = xyes; then + dnl XRRScreenResources is only present in Xrandr >= 1.2, we use that as a test. definitely_enable_video_x11_xrandr=no - AC_CHECK_HEADER(X11/extensions/Xrandr.h, - have_xrandr_h_hdr=yes, - have_xrandr_h_hdr=no, - [#include - ]) + have_xrandr_h_hdr=no + AC_TRY_COMPILE([ + #include + #include + ],[ + XRRScreenResources *res = NULL; + ],[ + have_xrandr_h_hdr=yes + AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH) + SUMMARY_video_x11="${SUMMARY_video_x11} xinput2_multitouch" + ]) if test x$have_xrandr_h_hdr = xyes; then if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then echo "-- dynamic libXrandr -> $xrandr_lib"