diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-09 15:28:08 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2013-03-09 15:28:08 +0000 |
commit | be97f8b2e5b933332ce52f8927c5e3f76f4c6fe9 (patch) | |
tree | 31ff6e44a01297aaa42a8611bf7c5999f7bca368 /app/xvinfo/configure.ac | |
parent | faa4ae277aa45c0cbc771b2a44b8dedd0d1096a4 (diff) |
Update to xvinfo 1.1.2
Diffstat (limited to 'app/xvinfo/configure.ac')
-rw-r--r-- | app/xvinfo/configure.ac | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/app/xvinfo/configure.ac b/app/xvinfo/configure.ac index 92b25ca14..c1c3a760d 100644 --- a/app/xvinfo/configure.ac +++ b/app/xvinfo/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([xvinfo], [1.1.1], +AC_INIT([xvinfo], [1.1.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xvinfo]) +AC_CONFIG_SRCDIR([Makefile.am]) +AC_CONFIG_HEADERS([config.h]) + +# Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE @@ -31,12 +36,12 @@ 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(XVINFO, xv x11) +PKG_CHECK_MODULES(XVINFO, [xv x11 xproto >= 7.0.17]) -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([ + Makefile + man/Makefile]) +AC_OUTPUT |