diff options
Diffstat (limited to 'iceauth/configure.ac')
-rw-r--r-- | iceauth/configure.ac | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/iceauth/configure.ac b/iceauth/configure.ac index adfa7e6..525e9d7 100644 --- a/iceauth/configure.ac +++ b/iceauth/configure.ac @@ -22,20 +22,18 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ([2.60]) -AC_INIT([iceauth], [1.0.4], +AC_INIT([iceauth], [1.0.5], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [iceauth]) 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], [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])]) XORG_MACROS_VERSION(1.8) -AC_PROG_CC -AC_PROG_INSTALL AC_TYPE_SIGNAL @@ -46,4 +44,7 @@ PKG_CHECK_MODULES(ICEAUTH, xproto ice) XORG_WITH_LINT -AC_OUTPUT([Makefile]) +AC_CONFIG_FILES([ + Makefile + man/Makefile]) +AC_OUTPUT |