Fixed package groups
[platform/upstream/libXxf86vm.git] / configure.ac
1
2 # Initialize Autoconf
3 AC_PREREQ([2.60])
4 AC_INIT([libXxf86vm], [1.1.2],
5         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXxf86vm])
6 AC_CONFIG_SRCDIR([Makefile.am])
7 AC_CONFIG_HEADERS(src/config.h)
8
9 # Initialize Automake
10 AM_INIT_AUTOMAKE([foreign dist-bzip2])
11 AM_MAINTAINER_MODE
12
13 # Initialize libtool
14 AC_PROG_LIBTOOL
15
16 # Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
17 m4_ifndef([XORG_MACROS_VERSION],
18           [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
19 XORG_MACROS_VERSION(1.8)
20 XORG_DEFAULT_OPTIONS
21 XORG_CHECK_MALLOC_ZERO
22
23 # Obtain compiler/linker options for depedencies
24 PKG_CHECK_MODULES(XXF86VM, xproto x11 xextproto xext [xf86vidmodeproto >= 2.2.99.1])
25
26 AC_CONFIG_FILES([Makefile
27                 src/Makefile
28                 man/Makefile
29                 xxf86vm.pc])
30 AC_OUTPUT