diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-05-15 05:53:56 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-05-15 05:53:56 +0000 |
commit | 264a677bd83f4aebee9923d2fcfa322daae0128c (patch) | |
tree | f1c130139ccea27b021e778e8e270d9219e001d6 /app/fslsfonts/configure.ac | |
parent | 4e60e799269e970edea4c740cf3e26e8d064e228 (diff) |
Update to fslsfonts 1.0.4
Diffstat (limited to 'app/fslsfonts/configure.ac')
-rw-r--r-- | app/fslsfonts/configure.ac | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/fslsfonts/configure.ac b/app/fslsfonts/configure.ac index 0489535f6..e828085da 100644 --- a/app/fslsfonts/configure.ac +++ b/app/fslsfonts/configure.ac @@ -22,7 +22,7 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.60]) -AC_INIT([fslsfonts], [1.0.3], +AC_INIT([fslsfonts], [1.0.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [fslsfonts]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE @@ -33,9 +33,12 @@ m4_ifndef([XORG_MACROS_VERSION], XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS([config.h]) # Checks for pkg-config packages -PKG_CHECK_MODULES(FSLSFONTS, xproto libfs) +PKG_CHECK_MODULES(FSLSFONTS, [xproto >= 7.0.17 libfs]) -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([ + Makefile + man/Makefile]) +AC_OUTPUT |