diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-05-15 06:03:18 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-05-15 06:03:18 +0000 |
commit | 036c615a59d103cbdc1c749f1a661a3c8c509efc (patch) | |
tree | debfffdfa20800008f9a3d64b2612656c2a39fd3 /app/xlsfonts/configure.ac | |
parent | e7448ed7cde82997782d1c0c0d1be2dcf7e48768 (diff) |
Update to xlsfonts 1.0.4
Diffstat (limited to 'app/xlsfonts/configure.ac')
-rw-r--r-- | app/xlsfonts/configure.ac | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/app/xlsfonts/configure.ac b/app/xlsfonts/configure.ac index 2ac1cc061..c9ffa0f55 100644 --- a/app/xlsfonts/configure.ac +++ b/app/xlsfonts/configure.ac @@ -21,27 +21,24 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. -AC_PREREQ([2.57]) -AC_INIT(xlsfonts,[1.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xlsfonts) +AC_PREREQ([2.60]) +AC_INIT(xlsfonts, [1.0.4], + [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xlsfonts) AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE -# Require xorg-macros: 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.4 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.4) + [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS -AM_CONFIG_HEADER(config.h) - -AC_PROG_CC -AC_PROG_INSTALL - +AC_CONFIG_HEADERS([config.h]) # Checks for pkg-config packages -PKG_CHECK_MODULES(XLSFONTS, x11) -AC_SUBST(XLSFONTS_CFLAGS) -AC_SUBST(XLSFONTS_LIBS) - +PKG_CHECK_MODULES(XLSFONTS, [x11 xproto >= 7.0.17]) -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([ + Makefile + man/Makefile]) +AC_OUTPUT |