configure.ac revision de3c0529
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
24AC_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#
30AC_INIT([libXft], [2.3.5],
31        [https://gitlab.freedesktop.org/xorg/lib/libXft/issues], [libXft])
32AC_CONFIG_SRCDIR([Makefile.am])
33AC_CONFIG_HEADERS([config.h])
34
35# Initialize Automake
36AM_INIT_AUTOMAKE([foreign dist-xz])
37
38# Initialize libtool
39AC_PROG_LIBTOOL
40
41# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
42m4_ifndef([XORG_MACROS_VERSION],
43          [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
44XORG_MACROS_VERSION(1.8)
45XORG_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
49AC_CONFIG_HEADERS([include/X11/Xft/Xft.h])
50AC_DEFINE_UNQUOTED([XFT_MAJOR],
51                [`echo $PACKAGE_VERSION | cut -d . -f 1`],
52                [Major version of Xft])
53AC_DEFINE_UNQUOTED([XFT_MINOR],
54                [`echo $PACKAGE_VERSION | cut -d . -f 2 | cut -d - -f 1`],
55                [Minor version of Xft])
56AC_DEFINE_UNQUOTED([XFT_REVISION],
57                [`echo $PACKAGE_VERSION | cut -d . -f 3 | cut -d - -f 1`],
58                [Micro revision of Xft])
59
60XFT_LT_VERSION=`echo $PACKAGE_VERSION | tr '.' ':'`
61AC_SUBST([XFT_LT_VERSION])
62
63#
64# Check for Xrender
65#
66PKG_CHECK_MODULES(XRENDER, xrender >= 0.8.2 x11)
67
68# Check freetype configuration
69PKG_CHECK_MODULES(FREETYPE, freetype2 >= 2.1.6)
70
71# Check fontconfig configuration
72PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 2.5.92)
73
74AC_SUBST(XRENDER_CFLAGS)
75AC_SUBST(XRENDER_LIBS)
76AC_SUBST(FREETYPE_CFLAGS)
77AC_SUBST(FREETYPE_LIBS)
78AC_SUBST(FONTCONFIG_CFLAGS)
79AC_SUBST(FONTCONFIG_LIBS)
80
81if test "$VERSION" = "" ; then
82       VERSION=$PACKAGE_VERSION;
83fi
84
85AC_CONFIG_FILES([Makefile
86		xft.pc
87		src/Makefile
88		man/Makefile])
89AC_OUTPUT
90