diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index c2e841781dc..b07c8d702fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-05-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> + + * configure.ac (HAVE_XRANDR): Check availability of + XRRGetScreenResources rather than that of XRRQueryExtension. + 2013-05-18 Eli Zaretskii <eliz@gnu.org> * make-dist (files): Add nt/msysconfig.sh, nt/mingw-cfg.site, diff --git a/configure.ac b/configure.ac index 00c841e77b0..c0aa8e78715 100644 --- a/configure.ac +++ b/configure.ac @@ -2999,7 +2999,7 @@ if test "${HAVE_X11}" = "yes"; then if test $HAVE_XRANDR = no; then # Test old way in case pkg-config doesn't have it (older machines). AC_CHECK_HEADER(X11/extensions/Xrandr.h, - [AC_CHECK_LIB(Xrandr, XRRQueryExtension, HAVE_XRANDR=yes)]) + [AC_CHECK_LIB(Xrandr, XRRGetScreenResources, HAVE_XRANDR=yes)]) if test $HAVE_XRANDR = yes; then XRANDR_LIBS=-lXrandr AC_SUBST(XRANDR_LIBS) |