summaryrefslogtreecommitdiffstats
path: root/configure.in
blob: 6ce83ca5fcecd9242100784721c8283468c451db (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
AC_INIT(introduction-to-gnome)

SCROLLKEEPER_REQUIRED=0.1.4
AC_SUBST(SCROLLKEEPER_REQUIRED)

AM_INIT_AUTOMAKE(gnome-user-docs, 1.4.0dev2)

AM_MAINTAINER_MODE

dnl ====================================
dnl = Begin tests for scrollkeeper
dnl ====================================
AC_PATH_PROG(SCROLLKEEPER_CONFIG, scrollkeeper-config,no)
if test x$SCROLLKEEPER_CONFIG = xno; then
  AC_MSG_ERROR(Couldn't find scrollkeeper-config, please install the scrollkeeper packaga)
fi
dnl ====================================
dnl = End tests for scrollkeeper
dnl ====================================


AC_OUTPUT([
Makefile
gnome-user-docs.spec
introduction-to-gnome/Makefile
introduction-to-gnome/C/Makefile
introduction-to-gnome/es/Makefile
unix-primer/Makefile
unix-primer/C/Makefile
unix-primer/es/Makefile
glossary/Makefile
glossary/C/Makefile
gnome-users-guide/Makefile
gnome-users-guide/gnome-users-guide-1.4/Makefile
gnome-users-guide/gnome-users-guide-1.4/C/Makefile
omf-install/Makefile
])