1 dnl Process this file with autoconf to produce a configure script.
5 dnl ==========================================================================
7 dnl If you add a version number here, you *must* add an AC_SUBST line for
8 dnl it too, or it will never make it into the spec file!
10 dnl ==========================================================================
12 GLIB_REQUIRED_VERSION=1.3.9
13 AC_SUBST(GLIB_REQUIRED_VERSION)
15 dnl ==========================================================================
19 # ATK_MICRO_VERSION += 1;
20 # ATK_INTERFACE_AGE += 1;
21 # ATK_BINARY_AGE += 1;
22 # if any functions have been added, set ATK_INTERFACE_AGE to 0.
23 # if backwards compatibility has been broken,
24 # set ATK_BINARY_AGE and ATK_INTERFACE_AGE to 0.
32 ## with 1.0 you'd insert MINOR_VERSION in here, i.e. 0.3->1.0.0->1.0.1->1.0.2
33 ## note that micro version has to go in the libtool stuff below
34 ATK_VERSION=$ATK_MAJOR_VERSION.$ATK_MICRO_VERSION
35 AM_INIT_AUTOMAKE(atk, $ATK_VERSION)
37 AC_SUBST(ATK_MAJOR_VERSION)
38 AC_SUBST(ATK_MINOR_VERSION)
39 AC_SUBST(ATK_MICRO_VERSION)
43 LT_RELEASE=$ATK_MAJOR_VERSION.$ATK_MINOR_VERSION
44 LT_CURRENT=`expr $ATK_MICRO_VERSION - $ATK_INTERFACE_AGE`
45 LT_REVISION=$ATK_INTERFACE_AGE
46 LT_AGE=`expr $ATK_BINARY_AGE - $ATK_INTERFACE_AGE`
57 dnl Cache $ACLOCAL_FLAGS
58 AC_CACHE_CHECK([for aclocal flags], ac_cv_atk_aclocal_flags,[
59 ac_cv_atk_aclocal_flags="$ACLOCAL_FLAGS"
61 ACLOCAL="$ACLOCAL $ac_cv_atk_aclocal_flags"
63 AC_ARG_ENABLE(rebuilds, [ --disable-rebuilds disable all source autogeneration rules],,enable_rebuilds=yes)
66 if test "x$GCC" = "xyes"; then
68 *[\ \ ]-Wall[\ \ ]*) ;;
69 *) CFLAGS="$CFLAGS -Wall" ;;
74 GLIB_PACKAGES="gobject-2.0 gmodule-2.0"
75 AC_SUBST(GLIB_PACKAGES)
77 dnl This PATH_GLIB is somewhat redundant, but does a sanity compile and
78 dnl importantly defines the GLIB_GENMARSHAL variable for subst into the
80 AM_PATH_GLIB_2_0($GLIB_REQUIRED_VERSION)
82 PKG_CHECK_MODULES(DEP, glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES, , AC_MSG_ERROR([
83 *** GLib not found. You can find it on ftp://ftp.gtk.org
87 # Rerun PKG_CONFIG to add gthread-2.0 cflags, but not libs
88 DEP_CFLAGS=`$PKG_CONFIG --cflags $GLIB_PACKAGES gthread-2.0`
90 AC_CHECK_PROG(GTKDOC, gtkdoc-mkdb, true, false)
92 gtk_doc_min_version=0.6
94 gtk_doc_version=`gtkdoc-mkdb --version`
95 AC_MSG_CHECKING([gtk-doc version ($gtk_doc_version) >= $gtk_doc_min_version])
97 exit (("$gtk_doc_version" =~ /^[[0-9]]+\.[[0-9]]+$/) &&
98 ("$gtk_doc_version" >= "$gtk_doc_min_version") ? 0 : 1);
107 dnl Let people disable the gtk-doc stuff.
108 AC_ARG_ENABLE(gtk-doc, [ --enable-gtk-doc Use gtk-doc to build documentation [default=auto]], enable_gtk_doc="$enableval", enable_gtk_doc=auto)
110 if test x$enable_gtk_doc = xauto ; then
111 if test x$GTKDOC = xtrue ; then
118 dnl NOTE: We need to use a separate automake conditional for this
119 dnl to make this work with the tarballs.
120 AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
122 # define a MAINT-like variable REBUILD which is set if Perl
123 # and awk are found, so autogenerated sources can be rebuilt
126 AC_CHECK_PROGS(PERL, perl5 perl)
129 if test "x$enable_rebuilds" = "xyes" && \
131 $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 && \
132 test -n "$AWK" ; then