1 dnl Process this file with autoconf to produce a configure script.
4 dnl Use a simple 2-digit version number for a while, since our old example
5 dnl Makefile can only cope with that, i.e. use 1.1, 1.2, 1.3 ... 9.9.
6 m4_define(gtk_doc_version, 1.14)
8 AC_INIT([gtk-doc], [gtk_doc_version], [http://bugzilla.gnome.org/enter_bug.cgi?product=gtk-doc])
10 AC_CONFIG_MACRO_DIR([m4])
11 AC_CONFIG_SRCDIR([gtkdoc-common.pl.in])
13 AM_INIT_AUTOMAKE([check-news std-options])
16 # Support silent build rules, requires at least automake-1.11. Disable
17 # by either passing --disable-silent-rules to configure or passing V=1
19 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
21 dnl Forcing a non-null ACTION-IF-NOT-FOUND disables scrollkeeper if
22 dnl gnome-doc-utils is not found but does not invalidate the build.
23 GNOME_DOC_INIT([],[],enable_scrollkeeper=no)
25 dnl make sure $ACLOCAL_FLAGS are used during a rebuild.
26 AC_SUBST([ACLOCAL_AMFLAGS], ["\${ACLOCAL_FLAGS}"])
32 dnl Make sure we have pkg-config >= 0.19, so installing in $(datadir) is OK.
33 PKG_PROG_PKG_CONFIG([0.19])
38 AC_PATH_PROG([PERL], [perl])
39 if test -z "$PERL"; then
40 AC_MSG_ERROR([perl not found])
43 AC_MSG_CHECKING([if Perl version >= 5.6.0])
44 if "$PERL" -e "require v5.6.0"; then
48 AC_MSG_ERROR([perl >= 5.6.0 is required for gtk-doc])
54 AM_PATH_PYTHON([2.3],,[:])
55 AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
58 dnl Check for jade or openjade.
60 dnl We prefer to use openjade with the '-t sgml-raw' option, since '-t sgml'
61 dnl adds a newline before the closing '>' of HTML tags. lynx can't parse
62 dnl that, which is bad for accessibility.
64 SGML_FORMAT_TYPE=sgml-raw
65 AC_PATH_PROG([JADE], [openjade])
66 if test -z "$JADE"; then
68 AC_PATH_PROG([JADE], [jade])
69 if test -z "$JADE"; then
70 AC_MSG_WARN([Could not find openjade or jade, so SGML is not supported])
73 AC_SUBST([SGML_FORMAT_TYPE])
76 dnl Check for xsltproc
78 AC_PATH_PROG([XSLTPROC], [xsltproc])
79 if test -z "$XSLTPROC"; then
80 AC_MSG_ERROR([xsltproc not found])
84 dnl Check for dblatex/fop (for pdf output)
86 AC_PATH_PROG([DBLATEX], [dblatex])
87 if test -z "$DBLATEX"; then
88 AC_PATH_PROG([FOP], [fop])
89 if test -z "$FOP"; then
90 AC_MSG_WARN([neither dblatex nor fop found, so no pdf output from xml])
94 dnl check for DocBook DTD and stylesheets in the local catalog.
95 JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.3//EN], [DocBook XML DTD V4.3])
96 JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl], [DocBook XSL Stylesheets])
99 dnl Check for syntax highlighters
102 AC_PATH_PROG([HIGHLIGHT], [source-highlight])
103 if test -n "$HIGHLIGHT"; then
104 HIGHLIGHT_OPTIONS="-t4 -sc -cstyle.css --no-doc -i"
106 AC_PATH_PROG([HIGHLIGHT], [highlight])
107 if test -n "$HIGHLIGHT"; then
108 HIGHLIGHT_OPTIONS="-X -f --class-name=gtkdoc "
110 AC_PATH_PROG([HIGHLIGHT], [vim])
111 if test -n "$HIGHLIGHT"; then
112 dnl vim is useless if it does not support syntax highlighting
113 AC_MSG_CHECKING([whether vim has +syntax feature])
114 if $HIGHLIGHT --version | grep '+syntax' >/dev/null; then
123 AC_SUBST([HIGHLIGHT_OPTIONS])
126 dnl Set PACKAGE_DATA_DIR so we can find the script containing common routines.
128 dnl From Autoconf Macro Archive:
129 m4_define([AC_DEFINE_DIR], [
132 test "x$prefix" = xNONE && prefix_NONE=yes && prefix=$ac_default_prefix
133 test "x$exec_prefix" = xNONE && exec_prefix_NONE=yes && exec_prefix=$prefix
134 eval ac_define_dir="\"[$]$2\""
135 eval ac_define_dir="\"$ac_define_dir\""
136 AC_SUBST($1, "$ac_define_dir")
137 test "$prefix_NONE" && prefix=NONE
138 test "$exec_prefix_NONE" && exec_prefix=NONE
140 PACKAGE_DATA_DIR="${datadir}/${PACKAGE}/data"
141 AC_DEFINE_DIR([PACKAGE_DATA_DIR], [PACKAGE_DATA_DIR])
143 dnl Only use -Wall if we have gcc
144 if test "x$GCC" = "xyes"; then
145 if test -z "`echo "$CFLAGS" | grep "\-Wall" 2> /dev/null`" ; then
146 CFLAGS="$CFLAGS -Wall"
150 dnl if glib is available we can enable the tests
151 PKG_CHECK_MODULES(TEST_DEPS, [glib-2.0 >= 2.6.0 gobject-2.0 >= 2.6.0],
152 [ glib_prefix="`$PKG_CONFIG --variable=prefix glib-2.0`"
153 gtk_doc_use_libtool="yes"
156 [ gtk_doc_use_libtool="no"
160 AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL" -a x$gtk_doc_use_libtool = xyes )
161 dnl this enable the rule in test/Makefile.am
162 AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xyes)
163 AC_SUBST(glib_prefix)
165 dnl enable runtime debugging code
166 AC_MSG_CHECKING(whether to enable runtime debugging code)
167 AC_ARG_ENABLE([debug],
168 AS_HELP_STRING([--enable-debug],
169 [enable runtime debugging code (default=no)]),,
171 AC_MSG_RESULT($enable_debug)
173 if test "$enable_debug" = "yes"; then
174 TRACE="print __FILE__ . \":\" . __LINE__ . \":\" ."
180 AC_CONFIG_FILES([Makefile
189 tests/gobject/Makefile
190 tests/gobject/src/Makefile
191 tests/gobject/docs/Makefile
192 tests/gobject/docs-tmpl/Makefile
194 tests/bugs/src/Makefile
195 tests/bugs/docs/Makefile
196 tests/annotations/Makefile
197 tests/annotations/src/Makefile
198 tests/annotations/docs/Makefile
200 tests/fail/src/Makefile
201 tests/fail/docs/Makefile
204 dnl run chmod on these after parsing them.
205 AC_CONFIG_FILES([gtkdoc-check], [chmod +x gtkdoc-check])
206 AC_CONFIG_FILES([gtkdoc-depscan], [chmod +x gtkdoc-depscan])
207 AC_CONFIG_FILES([gtkdoc-fixxref], [chmod +x gtkdoc-fixxref])
208 AC_CONFIG_FILES([gtkdoc-mkdb], [chmod +x gtkdoc-mkdb])
209 AC_CONFIG_FILES([gtkdoc-mkhtml], [chmod +x gtkdoc-mkhtml])
210 AC_CONFIG_FILES([gtkdoc-mkman], [chmod +x gtkdoc-mkman])
211 AC_CONFIG_FILES([gtkdoc-mkpdf], [chmod +x gtkdoc-mkpdf])
212 AC_CONFIG_FILES([gtkdoc-mktmpl], [chmod +x gtkdoc-mktmpl])
213 AC_CONFIG_FILES([gtkdoc-rebase], [chmod +x gtkdoc-rebase])
214 AC_CONFIG_FILES([gtkdoc-scan], [chmod +x gtkdoc-scan])
215 AC_CONFIG_FILES([gtkdoc-scangobj], [chmod +x gtkdoc-scangobj])
216 AC_CONFIG_FILES([gtkdoc-scanobj], [chmod +x gtkdoc-scanobj])
217 AC_CONFIG_FILES([gtkdocize], [chmod +x gtkdocize])
218 AC_CONFIG_FILES([tests/tools.sh], [chmod +x tests/tools.sh])
222 gtk-doc was configured with the following options:
223 ==================================================])
225 test "$PYTHON" != : \
226 && AC_MSG_NOTICE([** Python based tools enabled, using $PYTHON]) \
227 || AC_MSG_NOTICE([ Python based tools disabled])
229 && AC_MSG_NOTICE([** SGML support enabled, using $JADE]) \
230 || AC_MSG_NOTICE([ SGML support disabled, no jade processor available])
231 test -n "$DBLATEX$FOP" \
232 && AC_MSG_NOTICE([** XML PDF support enabled, using $DBLATEX$FOP]) \
233 || AC_MSG_NOTICE([ XML PDF support disabled, no fop available])
234 test "x$gdu_cv_have_gdu" = "xyes" \
235 && AC_MSG_NOTICE([** Gnome-doc-utils support enabled]) \
236 || AC_MSG_NOTICE([ Gnome-doc-utils support disabled])
237 test "x$enable_scrollkeeper" = "xyes" \
238 && AC_MSG_NOTICE([** Scrollkeeper support enabled]) \
239 || AC_MSG_NOTICE([ Scrollkeeper support disabled])
240 test -n "$HIGHLIGHT" \
241 && AC_MSG_NOTICE([** Syntax highlighting of examples enabled, using $HIGHLIGHT]) \
242 || AC_MSG_NOTICE([ Syntax highlighting of examples disabled])
243 test "x$build_tests" != "xno" \
244 && AC_MSG_NOTICE([** Building regression tests]) \
245 || AC_MSG_NOTICE([ Skipping regression tests])