summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 124d3faaa64a0a4e1b8f8a80228be48009a97dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.57)
AC_INIT([XCB Proto],
        1.1,
        [xcb@lists.freedesktop.org])
AC_CONFIG_SRCDIR([xcb-proto.pc.in])
AM_INIT_AUTOMAKE([foreign dist-bzip2])

AC_PATH_PROG(XMLLINT, xmllint, no)
AM_CONDITIONAL(HAVE_XMLLINT, test "x$XMLLINT" != "xno")
if test "$XMLLINT" = "no"; then
   AC_MSG_WARN([xmllint not found; unable to validate against schema.])
fi

xcbincludedir='${datadir}/xcb'
AC_SUBST(xcbincludedir)

AC_OUTPUT([Makefile src/Makefile xcb-proto.pc])