diff options
Diffstat (limited to 'app/fstobdf/configure.ac')
-rw-r--r-- | app/fstobdf/configure.ac | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/app/fstobdf/configure.ac b/app/fstobdf/configure.ac index ad0103aaa..fe35bab29 100644 --- a/app/fstobdf/configure.ac +++ b/app/fstobdf/configure.ac @@ -21,22 +21,21 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. -AC_PREREQ([2.57]) -AC_INIT(fstobdf,[1.0.3], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],fstobdf) -AM_INIT_AUTOMAKE([dist-bzip2]) +AC_PREREQ([2.60]) +AC_INIT([fstobdf], [1.0.4], + [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [fstobdf]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE -AM_CONFIG_HEADER(config.h) +# 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 +AM_CONFIG_HEADER(config.h) # Checks for pkg-config packages PKG_CHECK_MODULES(FSTOBDF, x11 libfs) -AC_SUBST(FSTOBDF_CFLAGS) -AC_SUBST(FSTOBDF_LIBS) - -XORG_MANPAGE_SECTIONS -XORG_RELEASE_VERSION AC_OUTPUT([Makefile]) |