diff options
Diffstat (limited to 'bdftopcf/configure.ac')
-rw-r--r-- | bdftopcf/configure.ac | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/bdftopcf/configure.ac b/bdftopcf/configure.ac index e074a19bb..1f00ef7fb 100644 --- a/bdftopcf/configure.ac +++ b/bdftopcf/configure.ac @@ -20,26 +20,24 @@ dnl USE OR PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. -AC_PREREQ([2.57]) -AC_INIT(bdftopcf, [1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], bdftopcf) -AM_INIT_AUTOMAKE([dist-bzip2 foreign]) +AC_PREREQ([2.60]) +AC_INIT([bdftopcf], [1.0.3], + [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [bdftopcf]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE AM_CONFIG_HEADER(config.h) -# Require xorg-macros: XORG_WITH_LINT, XORG_DEFAULT_OPTIONS -m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.1 or later before running autoconf/autogen])]) -XORG_MACROS_VERSION(1.3) +# 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.8 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.8) +XORG_DEFAULT_OPTIONS -AC_PROG_CC AC_PROG_INSTALL -XORG_DEFAULT_OPTIONS - # Checks for pkg-config packages PKG_CHECK_MODULES(BDFTOPCF, xfont) -AC_SUBST(BDFTOPCF_CFLAGS) -AC_SUBST(BDFTOPCF_LIBS) XORG_WITH_LINT |