configure.ac revision 05a1a286
1dnl Process this file with autoconf to create configure.
2
3AC_PREREQ([2.60])
4
5AC_INIT([libXevie], [1.0.3],
6        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXevie])
7AM_INIT_AUTOMAKE([foreign dist-bzip2])
8AM_MAINTAINER_MODE
9
10# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
11m4_ifndef([XORG_MACROS_VERSION],
12          [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
13XORG_MACROS_VERSION(1.8)
14XORG_DEFAULT_OPTIONS
15AM_CONFIG_HEADER(config.h)
16
17# Check for progs
18AC_PROG_LIBTOOL
19
20# Checks for pkg-config packages
21PKG_CHECK_MODULES(XEVIE, xproto x11 xextproto xext evieproto)
22
23dnl Allow checking code with lint, sparse, etc.
24XORG_WITH_LINT
25XORG_LINT_LIBRARY([Xevie])
26
27AC_OUTPUT([Makefile
28	   src/Makefile
29	   man/Makefile
30           xevie.pc])
31
32