blob: 88d55f1d5de8e1af5523ac99f9b3e189b7084dfb (
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
37
38
39
40
41
42
43
44
45
46
|
# $XdotOrg: $
AC_PREREQ([2.57])
AC_INIT(xkbdata, [1.0.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xkbdata)
AM_INIT_AUTOMAKE([dist-bzip2])
AM_MAINTAINER_MODE
AM_CONFIG_HEADER(config.h)
AC_PATH_PROG([XKBCOMP], [xkbcomp], [not_found])
if test x$XKBCOMP = xnot_found ; then
AC_ERROR([xkbcomp is required to install the xkb data files])
fi
XORG_RELEASE_VERSION
AC_OUTPUT([
Makefile
semantics/Makefile
keycodes/Makefile
keycodes/sgi/Makefile
keycodes/digital/Makefile
keymap/Makefile
keymap/sun/Makefile
keymap/digital/Makefile
keymap/sgi/Makefile
geometry/Makefile
geometry/digital/Makefile
geometry/sgi/Makefile
geometry/ibm/Makefile
compat/Makefile
rules/Makefile
symbols/Makefile
symbols/pc/Makefile
symbols/nec/Makefile
symbols/xfree68/Makefile
symbols/sony/Makefile
symbols/sgi/Makefile
symbols/macintosh/Makefile
symbols/sun/Makefile
symbols/fujitsu/Makefile
symbols/digital/Makefile
symbols/hp/Makefile
torture/Makefile
types/Makefile
])
|