~ubuntu-branches/ubuntu/trusty/libxi/trusty-security

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Christopher James Halse Rogers
  • Date: 2012-01-18 11:44:39 UTC
  • mfrom: (1.1.8) (4.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20120118114439-bm7qksg514zh51do
Tags: 2:1.5.99.2-0ubuntu3
Bump build depends on x11proto-input-dev to 2.1.99.5.  Our 2.1.99.4 package
is really 2.0.2, so 2.1.99.5 is the first version with MT support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
# Initialize Autoconf
3
3
AC_PREREQ([2.60])
4
 
AC_INIT([libXi], [1.4.3],
 
4
AC_INIT([libXi], [1.5.99.2],
5
5
        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXi])
6
6
AC_CONFIG_SRCDIR([Makefile.am])
7
7
AC_CONFIG_HEADERS([src/config.h])
13
13
# Initialize libtool
14
14
AC_PROG_LIBTOOL
15
15
 
16
 
# Require xorg-macros minimum of 1.10 for DocBook XML documentation
 
16
# Require xorg-macros minimum of 1.12 for DocBook external references
17
17
m4_ifndef([XORG_MACROS_VERSION],
18
 
          [m4_fatal([must install xorg-macros 1.10 or later before running autoconf/autogen])])
19
 
XORG_MACROS_VERSION(1.10)
 
18
          [m4_fatal([must install xorg-macros 1.12 or later before running autoconf/autogen])])
 
19
XORG_MACROS_VERSION(1.12)
20
20
XORG_DEFAULT_OPTIONS
 
21
XORG_ENABLE_DOCS
21
22
XORG_ENABLE_SPECS
22
 
XORG_WITH_XMLTO(0.0.20)
 
23
XORG_WITH_XMLTO(0.0.22)
23
24
XORG_WITH_FOP
24
 
XORG_CHECK_SGML_DOCTOOLS(1.5)
 
25
XORG_WITH_XSLTPROC
 
26
XORG_CHECK_SGML_DOCTOOLS(1.8)
25
27
XORG_WITH_ASCIIDOC(8.4.5)
26
28
XORG_CHECK_MALLOC_ZERO
27
29
 
28
30
# Obtain compiler/linker options for depedencies
29
 
PKG_CHECK_MODULES(XI, [xproto >= 7.0.13] [x11 >= 1.2.99.1] [xextproto >= 7.0.3] [xext >= 1.0.99.1] [inputproto >= 1.9.99.902])
 
31
PKG_CHECK_MODULES(XI, [xproto >= 7.0.13] [x11 >= 1.4.99.1] [xextproto >= 7.0.3] [xext >= 1.0.99.1] [inputproto >= 2.1.99.3])
30
32
 
31
33
# Check for xmlto and asciidoc for man page conversion
32
34
# (only needed by people building tarballs)
49
51
AC_CONFIG_FILES([Makefile
50
52
                src/Makefile
51
53
                man/Makefile
52
 
                doc/Makefile
53
54
                specs/Makefile
54
55
                xi.pc])
55
56
AC_OUTPUT