diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-09 15:16:16 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-09 15:16:16 +0000 |
commit | 597d725f09b950cabcad2f23d76f6c3747a1f9c9 (patch) | |
tree | ac1c81989cb03588dbd6eff9638481a862553e23 /app/xsetroot/configure.ac | |
parent | ee684c0fd396543ee5394e349938996be9c6d41b (diff) |
Update to xsetroot 1.1.1
Diffstat (limited to 'app/xsetroot/configure.ac')
-rw-r--r-- | app/xsetroot/configure.ac | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/app/xsetroot/configure.ac b/app/xsetroot/configure.ac index 56105be17..d7bfd46dd 100644 --- a/app/xsetroot/configure.ac +++ b/app/xsetroot/configure.ac @@ -21,9 +21,14 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. +# Initialize Autoconf AC_PREREQ([2.60]) -AC_INIT([xsetroot], [1.1.0], +AC_INIT([xsetroot], [1.1.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xsetroot]) +AC_CONFIG_SRCDIR([Makefile.am]) +AC_CONFIG_HEADERS([config.h]) + +# Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE @@ -31,14 +36,14 @@ AM_MAINTAINER_MODE m4_ifndef([XORG_MACROS_VERSION], [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])]) XORG_MACROS_VERSION(1.8) - -AM_CONFIG_HEADER(config.h) - XORG_DEFAULT_OPTIONS # Checks for pkg-config packages -PKG_CHECK_MODULES(XSETROOT, xmuu x11 xbitmaps xcursor) +PKG_CHECK_MODULES(XSETROOT, [xmuu x11 xbitmaps xcursor xproto >= 7.0.17]) XORG_WITH_LINT -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([ + Makefile + man/Makefile]) +AC_OUTPUT |