diff options
Diffstat (limited to 'lib/libXdamage/configure.ac')
-rw-r--r-- | lib/libXdamage/configure.ac | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/libXdamage/configure.ac b/lib/libXdamage/configure.ac index 845023e70..9382ec57c 100644 --- a/lib/libXdamage/configure.ac +++ b/lib/libXdamage/configure.ac @@ -21,7 +21,7 @@ dnl PERFORMANCE OF THIS SOFTWARE. dnl dnl Process this file with autoconf to create configure. -AC_PREREQ([2.57]) +AC_PREREQ([2.60]) dnl dnl Version should match the current XDamage version. XDamageQueryVersion @@ -30,19 +30,23 @@ dnl try to keep these the same. Note that the library has an extra dnl digit in the version number to track changes which don't affect the dnl protocol, so Xdamage version l.n.m corresponds to protocol version l.n dnl -AC_INIT(libXdamage, 1.1.2, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], libXdamage) -AM_INIT_AUTOMAKE([dist-bzip2]) +AC_INIT(libXdamage, + 1.1.3, + [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], + libXdamage) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE # Require xorg-macros: XORG_DEFAULT_OPTIONS -m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.3 or later before running autoconf/autogen])]) +m4_ifndef([XORG_MACROS_VERSION], + [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) XORG_MACROS_VERSION(1.3) +XORG_DEFAULT_OPTIONS AM_CONFIG_HEADER(config.h) # Check for progs AC_PROG_CC AC_PROG_LIBTOOL -XORG_DEFAULT_OPTIONS # Check damageext configuration, strip extra digits from package version to # find the required protocol version |