Version 0.5
[atk.git] / configure.in
blobc70fd1e44cf1c9e3a6743da975c616dbc67003f9
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=5
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 AM_PROG_LIBTOOL
56 dnl Cache $ACLOCAL_FLAGS
57 AC_CACHE_CHECK([for aclocal flags], ac_cv_atk_aclocal_flags,[
58    ac_cv_atk_aclocal_flags="$ACLOCAL_FLAGS"
60 ACLOCAL="$ACLOCAL $ac_cv_atk_aclocal_flags"
62 AC_ARG_ENABLE(rebuilds, [  --disable-rebuilds      disable all source autogeneration rules],,enable_rebuilds=yes)
64 changequote(,)dnl
65 if test "x$GCC" = "xyes"; then
66   case " $CFLAGS " in
67   *[\ \ ]-Wall[\ \      ]*) ;;
68   *) CFLAGS="$CFLAGS -Wall" ;;
69   esac
71 changequote([,])dnl
73 GLIB_PACKAGES="gobject-2.0 gmodule-2.0"
74 AC_SUBST(GLIB_PACKAGES)
76 dnl This PATH_GLIB is somewhat redundant, but does a sanity compile and 
77 dnl importantly defines the GLIB_GENMARSHAL variable for subst into the
78 dnl Makefile
79 AM_PATH_GLIB_2_0($GLIB_REQUIRED_VERSION)
81 PKG_CHECK_MODULES(DEP, glib-2.0 >= $GLIB_REQUIRED_VERSION $GLIB_PACKAGES, , AC_MSG_ERROR([
82         *** GLib not found. You can find it on ftp://ftp.gtk.org
83         *** Errors follow:
84             $DEP_PKG_ERRORS]))
86 # Rerun PKG_CONFIG to add gthread-2.0 cflags, but not libs
87 DEP_CFLAGS=`$PKG_CONFIG --cflags $GLIB_PACKAGES gthread-2.0`
89 AC_CHECK_PROG(GTKDOC, gtkdoc-mkdb, true, false)
91 gtk_doc_min_version=0.6
92 if $GTKDOC ; then
93     gtk_doc_version=`gtkdoc-mkdb --version`
94     AC_MSG_CHECKING([gtk-doc version ($gtk_doc_version) >= $gtk_doc_min_version])
95     if perl <<EOF ; then
96         exit (("$gtk_doc_version" =~ /^[[0-9]]+\.[[0-9]]+$/) &&
97             ("$gtk_doc_version" >= "$gtk_doc_min_version") ? 0 : 1);
98 EOF
99       AC_MSG_RESULT(yes)
100    else
101       AC_MSG_RESULT(no)
102         GTKDOC=false
103    fi
106 dnl Let people disable the gtk-doc stuff.
107 AC_ARG_ENABLE(gtk-doc, [  --enable-gtk-doc  Use gtk-doc to build documentation [default=auto]], enable_gtk_doc="$enableval", enable_gtk_doc=auto)
109 if test x$enable_gtk_doc = xauto ; then
110   if test x$GTKDOC = xtrue ; then
111     enable_gtk_doc=yes
112   else
113     enable_gtk_doc=no
114   fi
117 dnl NOTE: We need to use a separate automake conditional for this
118 dnl       to make this work with the tarballs.
119 AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
121 # define a MAINT-like variable REBUILD which is set if Perl
122 # and awk are found, so autogenerated sources can be rebuilt
124 AC_PROG_AWK
125 AC_CHECK_PROGS(PERL, perl5 perl)
127 REBUILD=\#
128 if test "x$enable_rebuilds" = "xyes" && \
129         test -n "$PERL" && \
130         $PERL -e 'exit !($] >= 5.002)' > /dev/null 2>&1 && \
131      test -n "$AWK" ; then
132   REBUILD=
134 AC_SUBST(REBUILD)
136 AC_OUTPUT([
137 Makefile
138 atk.pc
139 atk-uninstalled.pc
140 atk/Makefile
141 tests/Makefile
142 docs/Makefile
143 atk.spec