diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2011-08-28 13:21:01 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2011-08-28 13:21:01 +0000 |
commit | 71409747865949dbc64ef8ebe022ee852ad45110 (patch) | |
tree | ac9d3255330fc342e8128787f0c991acdf3068f6 /app/xrandr/configure.ac | |
parent | 5cc9e7e09e9c5e349b2edca5f8d4a856c92e493e (diff) |
Update to xrandr 1.3.5
Diffstat (limited to 'app/xrandr/configure.ac')
-rw-r--r-- | app/xrandr/configure.ac | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/xrandr/configure.ac b/app/xrandr/configure.ac index 264dab129..c58598703 100644 --- a/app/xrandr/configure.ac +++ b/app/xrandr/configure.ac @@ -21,7 +21,7 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.60]) -AC_INIT([xrandr], [1.3.4], +AC_INIT([xrandr], [1.3.5], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xrandr]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE @@ -32,11 +32,14 @@ m4_ifndef([XORG_MACROS_VERSION], XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS([config.h]) AC_CHECK_LIB(m,floor) # Checks for pkg-config packages -PKG_CHECK_MODULES(XRANDR, xrandr >= 1.3 xrender x11) +PKG_CHECK_MODULES(XRANDR, xrandr >= 1.3 xrender x11 xproto >= 7.0.17) -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([ + Makefile + man/Makefile]) +AC_OUTPUT |