upgrade for xorg-server 1.12.99.905 (for 1.13 RC)
[adaptation/xorg/driver/xserver-xorg-input-gesture.git] / configure.ac
1 #  Copyright 2007 Peter Hutterer
2 #  Copyright 2009 Przemysław Firszt
3 #
4 #  Permission is hereby granted, free of charge, to any person obtaining a
5 #  copy of this software and associated documentation files (the "Software"),
6 #  to deal in the Software without restriction, including without limitation
7 #  on the rights to use, copy, modify, merge, publish, distribute, sub
8 #  license, and/or sell copies of the Software, and to permit persons to whom
9 #  the Software is furnished to do so, subject to the following conditions:
10 #
11 #  The above copyright notice and this permission notice (including the next
12 #  paragraph) shall be included in all copies or substantial portions of the
13 #  Software.
14 #
15 #  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 #  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 #  FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
18 #  AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 #  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 #  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 #
22 # Process this file with autoconf to produce a configure script
23
24 AC_PREREQ(2.57)
25 AC_INIT([xserver-xorg-input-gesture],
26         0.1.0,
27         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
28         xserver-xorg-input-gesture)
29
30 AC_CONFIG_SRCDIR([Makefile.am])
31 AC_CONFIG_AUX_DIR(.)
32 AM_INIT_AUTOMAKE([dist-bzip2])
33
34 AM_MAINTAINER_MODE
35
36 # Require xorg-macros: XORG_DEFAULT_OPTIONS
37 m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.3 or later before running autoconf/autogen])])
38 XORG_MACROS_VERSION(1.3)
39 AM_CONFIG_HEADER([config.h])
40
41 # Checks for programs.
42 AC_DISABLE_STATIC
43 AC_PROG_LIBTOOL
44 AC_PROG_CC
45 XORG_DEFAULT_OPTIONS
46
47 AH_TOP([#include "xorg-server.h"])
48
49 AC_ARG_WITH(xorg-module-dir,
50             AC_HELP_STRING([--with-xorg-module-dir=DIR],
51                            [Default xorg module directory [[default=$libdir/xorg/modules]]]),
52             [moduledir="$withval"],
53             [moduledir="$libdir/xorg/modules"])
54 inputdir=${moduledir}/input
55 AC_SUBST(inputdir)
56
57 # Checks for pkg-config packages. We need to be able to override sdkdir
58 # to satisfy silly distcheck requirements.
59 PKG_CHECK_MODULES(XORG, xorg-server xproto $REQUIRED_MODULES)
60 XORG_CFLAGS="$CWARNFLAGS $XORG_CFLAGS"
61 AC_ARG_WITH([sdkdir], [],
62     [sdkdir="$withval"],
63     [sdkdir=`$PKG_CONFIG --variable=sdkdir xorg-server`])
64 AC_SUBST([sdkdir])
65
66 # Checks for libraries.
67
68 # Checks for header files.
69 AC_HEADER_STDC
70
71 DRIVER_NAME=gesture
72 AC_SUBST([DRIVER_NAME])
73
74 AC_OUTPUT([Makefile
75            src/Makefile
76            man/Makefile
77            xorg-gesture.pc])