mirror of
https://gitlab.freedesktop.org/xorg/proto/xcbproto.git
synced 2025-12-20 04:40:09 +01:00
Signed-off-by: Robert Knutsson <zybreak@gmail.com> Part-of: <https://gitlab.freedesktop.org/xorg/proto/xcbproto/-/merge_requests/64>
23 lines
652 B
Text
23 lines
652 B
Text
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ(2.57)
|
|
AC_INIT([XCB Proto],
|
|
1.17.0,
|
|
[xcb@lists.freedesktop.org])
|
|
AC_CONFIG_SRCDIR([xcb-proto.pc.in])
|
|
AM_INIT_AUTOMAKE([foreign dist-xz])
|
|
|
|
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
|
|
|
|
AM_PATH_PYTHON([3.6])
|
|
|
|
xcbincludedir='${datadir}/xcb'
|
|
AC_SUBST(xcbincludedir)
|
|
|
|
AC_CONFIG_FILES([Makefile src/Makefile xcbgen/Makefile xcb-proto.pc])
|
|
AC_OUTPUT
|