diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-04-10 16:25:34 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2023-04-10 16:25:34 +0000 |
commit | e4138753e646f3440424e5eb43b3332c3e7ccda7 (patch) | |
tree | edc3b8e16ef7938232198f99ad4223f7f8f66e9b /driver/xf86-input-elographics/configure.ac | |
parent | ca481e5fac5e7950f0f32c289fab56f04ae0ec2d (diff) |
Update to xf86-input-elographics 1.4.3
Diffstat (limited to 'driver/xf86-input-elographics/configure.ac')
-rw-r--r-- | driver/xf86-input-elographics/configure.ac | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/driver/xf86-input-elographics/configure.ac b/driver/xf86-input-elographics/configure.ac index 6cf5a68ca..41f154819 100644 --- a/driver/xf86-input-elographics/configure.ac +++ b/driver/xf86-input-elographics/configure.ac @@ -20,28 +20,29 @@ # # Process this file with autoconf to produce a configure script -AC_PREREQ(2.57) +# Initialize Autoconf +AC_PREREQ([2.60]) AC_INIT([xf86-input-elographics], - 1.4.2, - [https://gitlab.freedesktop.org/xorg/driver/xf86-input-elographics/issues], + [1.4.3], + [https://gitlab.freedesktop.org/xorg/driver/xf86-input-elographics/-/issues], xf86-input-elographics) - AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_AUX_DIR(.) -AM_INIT_AUTOMAKE([dist-bzip2]) +AC_CONFIG_HEADERS([config.h]) -AM_MAINTAINER_MODE +# Initialize Automake +AM_INIT_AUTOMAKE([dist-xz]) -# Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG -m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.2) -AM_CONFIG_HEADER([config.h]) +# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS +m4_ifndef([XORG_MACROS_VERSION], + [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.8) +XORG_DEFAULT_OPTIONS # Checks for programs. AC_DISABLE_STATIC AC_PROG_LIBTOOL AC_PROG_CC -XORG_CWARNFLAGS AH_TOP([#include "xorg-server.h"]) @@ -70,8 +71,6 @@ AC_HEADER_STDC DRIVER_NAME=elographics AC_SUBST([DRIVER_NAME]) -XORG_MANPAGE_SECTIONS -XORG_RELEASE_VERSION -XORG_CHANGELOG -AC_OUTPUT([Makefile src/Makefile man/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) +AC_OUTPUT |