diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-04-07 16:04:48 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-04-07 16:04:48 +0000 |
commit | 74dabb8ff88e74cab402437f5d794b2444e9ca48 (patch) | |
tree | f73a32b4d9297dca43ecd85178fdec7bf66d13b9 /app/xlsatoms/configure.ac | |
parent | 5aa13083ebab8fa6015de08d312e57b65dc331cc (diff) |
Update to xlsatoms 1.1.1
Diffstat (limited to 'app/xlsatoms/configure.ac')
-rw-r--r-- | app/xlsatoms/configure.ac | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/app/xlsatoms/configure.ac b/app/xlsatoms/configure.ac index b94752544..9496aac1f 100644 --- a/app/xlsatoms/configure.ac +++ b/app/xlsatoms/configure.ac @@ -21,28 +21,27 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. -AC_PREREQ([2.57]) -AC_INIT(xlsatoms, [1.1.0], +AC_PREREQ([2.60]) +AC_INIT(xlsatoms, [1.1.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xlsatoms) AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE -# Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS +# 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.3 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.3) + [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.8) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS([config.h]) -AC_PROG_CC -AC_PROG_INSTALL XORG_DEFAULT_OPTIONS # Checks for pkg-config packages PKG_CHECK_MODULES(XLSATOMS, xcb) -AC_SUBST(XLSATOMS_CFLAGS) -AC_SUBST(XLSATOMS_LIBS) -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([ + Makefile + man/Makefile]) +AC_OUTPUT |