Update comments in atk_text_get_text_[at|after|before]_offset() to clarify
[atk.git] / configure.in
blobd6e808ad1dd214b0acfc7c15b9639427db7d328d
1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT(ChangeLog)
5 dnl ==========================================================================
6 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!
9 dnl
10 dnl ==========================================================================
12 GLIB_REQUIRED_VERSION=1.3.9
13 AC_SUBST(GLIB_REQUIRED_VERSION)
15 dnl ==========================================================================
18 # Making releases:
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.
27 ATK_MAJOR_VERSION=0
28 ATK_MINOR_VERSION=0
29 ATK_MICRO_VERSION=6
30 ATK_INTERFACE_AGE=0
31 ATK_BINARY_AGE=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)
40 AC_SUBST(ATK_VERSION)
42 # libtool versioning
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`
47 AC_SUBST(LT_RELEASE)
48 AC_SUBST(LT_CURRENT)
49 AC_SUBST(LT_REVISION)
50 AC_SUBST(LT_AGE)
52 AC_PROG_CC
53 AM_DISABLE_STATIC
54 AC_LIBTOOL_WIN32_DLL
55 AM_PROG_LIBTOOL
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)
65 changequote(,)dnl
66 if test "x$GCC" = "xyes"; then
67   case " $CFLAGS " in
68   *[\ \ ]-Wall[\ \      ]*) ;;
69   *) CFLAGS="$CFLAGS -Wall" ;;
70   esac
72 changequote([,])dnl
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
79 dnl Makefile
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
84         *** Errors follow:
85             $DEP_PKG_ERRORS]))
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
93 if $GTKDOC ; then
94     gtk_doc_version=`gtkdoc-mkdb --version`
95     AC_MSG_CHECKING([gtk-doc version ($gtk_doc_version) >= $gtk_doc_min_version])
96     if perl <<EOF ; then
97         exit (("$gtk_doc_version" =~ /^[[0-9]]+\.[[0-9]]+$/) &&
98             ("$gtk_doc_version" >= "$gtk_doc_min_version") ? 0 : 1);
99 EOF
100       AC_MSG_RESULT(yes)
101    else
102       AC_MSG_RESULT(no)
103         GTKDOC=false
104    fi
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
112     enable_gtk_doc=yes
113   else
114     enable_gtk_doc=no
115   fi
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
125 AC_PROG_AWK
126 AC_CHECK_PROGS(PERL, perl5 perl)
128 REBUILD=\#
129 if test "x$enable_rebuilds" = "xyes" && \
130         test -n "$PERL" && \
131         $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 && \
132      test -n "$AWK" ; then
133   REBUILD=
135 AC_SUBST(REBUILD)
137 AC_OUTPUT([
138 Makefile
139 atk.pc
140 atk-uninstalled.pc
141 atk/Makefile
142 tests/Makefile
143 docs/Makefile
144 atk.spec