diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-03-28 13:01:27 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-03-28 13:01:27 +0000 |
commit | 02ca0b605fd0e0631f92a271583eafc9969141b1 (patch) | |
tree | 4d40fad8a79f0fe1c5120410b6b5a463021b6607 /app/xkbevd/configure.ac | |
parent | 2f1041af17d5fca4917694f9fa361061c5479054 (diff) |
update to xkbevd 1.1.0.
Diffstat (limited to 'app/xkbevd/configure.ac')
-rw-r--r-- | app/xkbevd/configure.ac | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app/xkbevd/configure.ac b/app/xkbevd/configure.ac index 1d1bac164..143a1f3c9 100644 --- a/app/xkbevd/configure.ac +++ b/app/xkbevd/configure.ac @@ -21,22 +21,26 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.57]) -AC_INIT(xkbevd,[1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xkbevd) +AC_INIT(xkbevd, [1.1.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xkbevd) AM_INIT_AUTOMAKE([dist-bzip2]) AM_MAINTAINER_MODE +# Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS +m4_ifndef([XORG_MACROS_VERSION], + [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.3) + AM_CONFIG_HEADER(config.h) AC_PROG_CC AC_PROG_INSTALL AC_PROG_YACC +XORG_DEFAULT_OPTIONS + # Checks for pkg-config packages PKG_CHECK_MODULES(XKBEVD, xkbfile x11) AC_SUBST(XKBEVD_CFLAGS) AC_SUBST(XKBEVD_LIBS) -XORG_MANPAGE_SECTIONS -XORG_RELEASE_VERSION - AC_OUTPUT([Makefile]) |