packaging: version up to 2.3.2
[platform/upstream/libXft.git] / configure.ac
1 #
2 #  Copyright © 2003 Keith Packard, Noah Levitt
3 #
4 #  Permission to use, copy, modify, distribute, and sell this software and its
5 #  documentation for any purpose is hereby granted without fee, provided that
6 #  the above copyright notice appear in all copies and that both that
7 #  copyright notice and this permission notice appear in supporting
8 #  documentation, and that the name of Keith Packard not be used in
9 #  advertising or publicity pertaining to distribution of the software without
10 #  specific, written prior permission.  Keith Packard makes no
11 #  representations about the suitability of this software for any purpose.  It
12 #  is provided "as is" without express or implied warranty.
13 #
14 #  KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 #  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 #  EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 #  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 #  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 #  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 #  PERFORMANCE OF THIS SOFTWARE.
21 #
22
23 # Initialize Autoconf
24 AC_PREREQ([2.60])
25 #
26 # This is the package version number, not the shared library
27 # version.  This version number will be substituted into Xft.h
28 # Please bump the minor library number at each release as well.
29 #
30 AC_INIT([libXft], [2.3.2],
31         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXft])
32 AC_CONFIG_SRCDIR([Makefile.am])
33 AC_CONFIG_HEADERS([config.h])
34
35 # Initialize Automake
36 AM_INIT_AUTOMAKE([foreign dist-bzip2])
37
38 # Initialize libtool
39 AC_PROG_LIBTOOL
40
41 # Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
42 m4_ifndef([XORG_MACROS_VERSION],
43           [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
44 XORG_MACROS_VERSION(1.8)
45 XORG_DEFAULT_OPTIONS
46
47 # Set library version for Xft.h from package version set in AC_INIT
48 # copied from PACKAGE_VERSION_* settings in XORG_VERSION
49 AC_CONFIG_HEADERS([include/X11/Xft/Xft.h])
50 AC_DEFINE_UNQUOTED([XFT_MAJOR],
51                 [`echo $PACKAGE_VERSION | cut -d . -f 1`],
52                 [Major version of Xft])
53 AC_DEFINE_UNQUOTED([XFT_MINOR],
54                 [`echo $PACKAGE_VERSION | cut -d . -f 2 | cut -d - -f 1`],
55                 [Minor version of Xft])
56 AC_DEFINE_UNQUOTED([XFT_REVISION],
57                 [`echo $PACKAGE_VERSION | cut -d . -f 3 | cut -d - -f 1`],
58                 [Micro revision of Xft])
59
60 XFT_LT_VERSION=`echo $PACKAGE_VERSION | tr '.' ':'`
61 AC_SUBST([XFT_LT_VERSION])
62
63 #
64 # Check for Xrender
65 #
66 PKG_CHECK_MODULES(XRENDER, xrender >= 0.8.2 x11)
67
68 # Check freetype configuration
69 PKG_CHECK_MODULES(FREETYPE, freetype2 >= 2.1.6)
70
71 # Check fontconfig configuration
72 PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 2.5.92)
73
74 AC_SUBST(XRENDER_CFLAGS)
75 AC_SUBST(XRENDER_LIBS)
76 AC_SUBST(FREETYPE_CFLAGS)
77 AC_SUBST(FREETYPE_LIBS)
78 AC_SUBST(FONTCONFIG_CFLAGS)
79 AC_SUBST(FONTCONFIG_LIBS)
80
81 if test "$VERSION" = "" ; then
82        VERSION=$PACKAGE_VERSION;
83 fi
84
85 AC_CONFIG_FILES([Makefile
86                 xft.pc
87                 src/Makefile
88                 man/Makefile])
89 AC_OUTPUT