summaryrefslogtreecommitdiff
path: root/lib/libXinerama/configure.ac
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2013-05-31 15:19:15 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2013-05-31 15:19:15 +0000
commit0acf7951a7cbe6feafb6b19c424c1f6298e8b019 (patch)
treea4b4f79ee3d4b1fac3117313b8c6c55b1a75027d /lib/libXinerama/configure.ac
parentd0c662f65ef4c5eedce1d255c3fa1b83df834412 (diff)
Update to libXinerama 1.1.3
Diffstat (limited to 'lib/libXinerama/configure.ac')
-rw-r--r--lib/libXinerama/configure.ac9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/libXinerama/configure.ac b/lib/libXinerama/configure.ac
index d5a76960b..ce1d50fa5 100644
--- a/lib/libXinerama/configure.ac
+++ b/lib/libXinerama/configure.ac
@@ -21,14 +21,13 @@
# Initialize Autoconf
AC_PREREQ([2.60])
-AC_INIT([libXinerama], [1.1.2],
+AC_INIT([libXinerama], [1.1.3],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXinerama])
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_HEADERS([config.h])
# Initialize Automake
AM_INIT_AUTOMAKE([foreign dist-bzip2])
-AM_MAINTAINER_MODE
# Initialize libtool
AC_PROG_LIBTOOL
@@ -49,6 +48,12 @@ LIBS="$XINERAMA_LIBS"
AC_CHECK_FUNCS([_XEatDataWords])
LIBS="$SAVE_LIBS"
+# Check for _XEatDataWords function that may be patched into older Xlib releases
+SAVE_LIBS="$LIBS"
+LIBS="$XINERAMA_LIBS"
+AC_CHECK_FUNCS([_XEatDataWords])
+LIBS="$SAVE_LIBS"
+
# Allow checking code with lint, sparse, etc.
XORG_WITH_LINT
LINT_FLAGS="${LINT_FLAGS} ${XINERAMA_CFLAGS}"