The following shows the diffstat and patchsets between
4701eec..2fa0e60^
----------------------------------------------------------------
commit 2fa0e60cf4d5f377a49251587741167fac9ddf3a
Author: Thomas Adam <[email protected]>
Date: Tue Dec 23 22:58:24 2014 +0000
Remove stray comma for XRandR detection
Fix a stray comma interpolating into the configure script as an action to
run, causing it to print harmless errors.
Noticed by Hendrik Jaeger.
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 825c99b..12461b8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -348,7 +348,7 @@ AH_TEMPLATE([HAVE_XRANDR],[Define if XRandR library is
used.])
if test ! x"$with_xrandr" = xno; then
$UNSET ac_cv_lib_XRandR_XRRQueryExtension
AC_CHECK_LIB(Xrandr, XRRQueryExtension, [
- AC_DEFINE(HAVE_XRANDR),
+ AC_DEFINE(HAVE_XRANDR)
with_xrandr=yes
XRandR_LIBS=-lXrandr
],[
----------------------------------------------------------------
Diffstat:
----------------------------------------------------------------
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------