diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2022-11-06 18:00:45 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2022-11-06 18:00:45 +0000 |
commit | b266d7a314d16fa9c703496e17a767a0d06daee6 (patch) | |
tree | 3e46ddd52afbf04fac1e6ea8b78810e4372cb21e /lib/libXtst/configure.ac | |
parent | 6f5e184f3688ee8f4e4723ae7679ae2a806fe0eb (diff) |
Update libXtst to version 1.2.4
Diffstat (limited to 'lib/libXtst/configure.ac')
-rw-r--r-- | lib/libXtst/configure.ac | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/lib/libXtst/configure.ac b/lib/libXtst/configure.ac index c169598fe..57a94628c 100644 --- a/lib/libXtst/configure.ac +++ b/lib/libXtst/configure.ac @@ -22,13 +22,13 @@ # Initialize Autoconf AC_PREREQ([2.60]) -AC_INIT([libXtst], [1.2.2], - [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXtst]) +AC_INIT([libXtst], [1.2.4], + [https://gitlab.freedesktop.org/xorg/lib/libxtst/-/issues], [libXtst]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS([config.h]) # Initialize Automake -AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_INIT_AUTOMAKE([foreign dist-xz]) # Initialize libtool AC_PROG_LIBTOOL @@ -44,14 +44,8 @@ XORG_WITH_FOP XORG_WITH_XSLTPROC XORG_CHECK_SGML_DOCTOOLS(1.8) -# Obtain compiler/linker options for depedencies -PKG_CHECK_MODULES(XTST, x11 [xext >= 1.0.99.4] xi [recordproto >= 1.13.99.1] [xextproto >= 7.0.99.3] inputproto) - -# Check for _XEatDataWords function that may be patched into older Xlib release -SAVE_LIBS="$LIBS" -LIBS="$XTST_LIBS" -AC_CHECK_FUNCS([_XEatDataWords]) -LIBS="$SAVE_LIBS" +# Obtain compiler/linker options for dependencies +PKG_CHECK_MODULES(XTST, [x11 >= 1.6] [xext >= 1.0.99.4] xi [recordproto >= 1.13.99.1] [xextproto >= 7.0.99.3] inputproto) # Determine if the source for man pages is available # It may already be present (tarball) or can be generated using xmlto |