upload tizen2.0 source
[framework/uifw/xorg/lib/libxcomposite.git] / configure.ac
1 dnl 
2 dnl  Copyright © 2003 Keith Packard, Noah Levitt
3 dnl 
4 dnl  Permission to use, copy, modify, distribute, and sell this software and its
5 dnl  documentation for any purpose is hereby granted without fee, provided that
6 dnl  the above copyright notice appear in all copies and that both that
7 dnl  copyright notice and this permission notice appear in supporting
8 dnl  documentation, and that the name of Keith Packard not be used in
9 dnl  advertising or publicity pertaining to distribution of the software without
10 dnl  specific, written prior permission.  Keith Packard makes no
11 dnl  representations about the suitability of this software for any purpose.  It
12 dnl  is provided "as is" without express or implied warranty.
13 dnl 
14 dnl  KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 dnl  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 dnl  EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 dnl  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 dnl  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 dnl  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 dnl  PERFORMANCE OF THIS SOFTWARE.
21 dnl
22 dnl Process this file with autoconf to create configure.
23
24 AC_PREREQ([2.60])
25
26 dnl
27 dnl Version should match the current XComposite version. XCompositeQueryVersion
28 dnl returns the version from xcompositewire.h, NOT the version we set here.
29 dnl But we try to keep these the same.  Note that the library has an extra
30 dnl digit in the version number to track changes which don't affect the
31 dnl protocol, so Xcomposite version l.n.m corresponds to protocol version l.n
32 dnl that 'revision' number appears in Xcomposite.h and has to be manually
33 dnl synchronized.
34 dnl
35 AC_INIT(libXcomposite,
36         [0.4.3],
37         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
38         libXcomposite)
39 AM_INIT_AUTOMAKE([foreign dist-bzip2])
40 AM_MAINTAINER_MODE
41
42 # Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
43 m4_ifndef([XORG_MACROS_VERSION],
44           [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
45 XORG_MACROS_VERSION(1.8)
46 AM_CONFIG_HEADER(config.h)
47
48 # Check for progs
49 AC_PROG_CC
50 AC_PROG_LIBTOOL
51
52 XORG_DEFAULT_OPTIONS
53 XORG_WITH_XMLTO(0.0.20)
54
55 # Determine if the source for man pages is available
56 # It may already be present (tarball) or can be generated using xmlto
57 AM_CONDITIONAL([INSTALL_MANPAGES],
58         [test -f "$srcdir/man/Xcomposite.man" || test "x$have_xmlto" = xyes])
59
60 # Check compositeext configuration, strip extra digits from package version to
61 # find the required protocol version
62
63 if test "$VERSION" = "" ; then
64        VERSION=$PACKAGE_VERSION;
65 fi
66 COMPOSITEEXT_VERSION=[`echo $VERSION | sed 's/^\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`]
67 AC_SUBST(COMPOSITEEXT_VERSION)
68 PKG_CHECK_MODULES(XCOMPOSITE, [compositeproto >= $COMPOSITEEXT_VERSION] x11)
69 PKG_CHECK_MODULES(XFIXES, xfixes)
70
71 AC_OUTPUT([Makefile
72            src/Makefile
73            man/Makefile
74            xcomposite.pc])
75