summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 7b6bed54471b6a3fe4b165ffe78dd5969c316df2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# $XdotOrg: $

AC_PREREQ([2.57])
AC_INIT(xcursor-themes, [1.0.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xcursor-themes)
AM_INIT_AUTOMAKE([dist-bzip2])
AM_MAINTAINER_MODE

AM_CONFIG_HEADER(config.h)

AC_PROG_CC
AC_PROG_INSTALL

AC_TYPE_SIGNAL

AC_PATH_PROG(XCURSORGEN, xcursorgen, no)
if test "x$XCURSORGEN" = xno; then
	AC_MSG_ERROR([xcursorgen is required to build these cursors.])
fi
AC_SUBST([XCURSORGEN])

PKG_CHECK_MODULES(ICONDEFS, xcursor)
cursordir=$(pkg-config --variable=icondir xcursor)
AC_SUBST([cursordir])

AM_CONDITIONAL(WHITEGLASS, true)
AM_CONDITIONAL(REDGLASS, true)
AM_CONDITIONAL(HANDHELDS, true)

XORG_RELEASE_VERSION

AC_OUTPUT([
	Makefile
	handhelds/Makefile
	redglass/Makefile
	whiteglass/Makefile
])