source: trunk/third/gnome2-user-docs/configure.in @ 21422

Revision 21422, 1.2 KB checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r21421, which included commits to RCS files with non-trunk default branches.
Line 
1AC_INIT(gnome2-user-guide)
2
3SCROLLKEEPER_REQUIRED=0.3.11
4AC_SUBST(SCROLLKEEPER_REQUIRED)
5
6AM_INIT_AUTOMAKE(gnome2-user-docs, 2.8.1)
7
8AM_MAINTAINER_MODE
9
10dnl ====================================
11dnl = Begin tests for scrollkeeper
12dnl ====================================
13AC_PATH_PROG(SCROLLKEEPER_CONFIG, scrollkeeper-config,no)
14if test x$SCROLLKEEPER_CONFIG = xno; then
15  AC_MSG_ERROR(Couldn't find scrollkeeper-config, please install the scrollkeeper packaga)
16fi
17dnl ====================================
18dnl = End tests for scrollkeeper
19dnl ====================================
20
21dnl ====================================
22dnl = Test whether jw is installed
23dnl ====================================
24AC_PATH_PROG(JW,jw,no)
25if test x$JW = xno; then
26  HAVE_JW="no"
27else
28  HAVE_JW="yes"
29fi
30AM_CONDITIONAL(HAVE_JW, test "x$HAVE_JW" = "xyes")
31AC_SUBST(HAVE_JW)
32dnl ====================================
33dnl = End tests for jw
34dnl ====================================
35
36
37AC_OUTPUT([
38Makefile
39gnome-user-docs.spec
40gnome2-user-guide/Makefile
41gnome2-user-guide/C/Makefile
42gnome2-accessibility-guide/Makefile
43gnome2-accessibility-guide/C/Makefile
44gnome2-system-admin-guide/Makefile
45gnome2-system-admin-guide/C/Makefile
46])
Note: See TracBrowser for help on using the repository browser.