diff options
Diffstat (limited to 'bdftopcf/configure.ac')
-rw-r--r-- | bdftopcf/configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/bdftopcf/configure.ac b/bdftopcf/configure.ac index 1f00ef7fb..8de519111 100644 --- a/bdftopcf/configure.ac +++ b/bdftopcf/configure.ac @@ -21,12 +21,12 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.60]) -AC_INIT([bdftopcf], [1.0.3], +AC_INIT([bdftopcf], [1.0.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [bdftopcf]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS([config.h]) # Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS m4_ifndef([XORG_MACROS_VERSION], @@ -34,11 +34,13 @@ m4_ifndef([XORG_MACROS_VERSION], XORG_MACROS_VERSION(1.8) XORG_DEFAULT_OPTIONS -AC_PROG_INSTALL # Checks for pkg-config packages PKG_CHECK_MODULES(BDFTOPCF, xfont) XORG_WITH_LINT -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([ + Makefile + man/Makefile]) +AC_OUTPUT |