Release 0.30.0
[platform/upstream/gnome-common.git] / configure.in
1 AC_INIT(macros2/gnome-common.m4)
2
3 AM_INIT_AUTOMAKE(gnome-common, 2.4.0)
4
5 AM_MAINTAINER_MODE
6
7 AM_CONDITIONAL(INSIDE_GNOME_COMMON, true)
8
9 AC_ISC_POSIX
10 AC_PROG_CC
11 AC_PROG_CPP
12 AC_STDC_HEADERS
13 AM_PROG_LIBTOOL
14
15 AC_PROG_AWK
16
17 AC_PATH_PROG(PKG_CONFIG, pkg-config)
18 if test "!" -x "$PKG_CONFIG" ; then
19    AC_MSG_ERROR([
20 *** You need the latest pkg-config.
21 *** Get the latest version of pkg-config from
22 *** <http://www.freedesktop.org/software/pkgconfig/>.])
23 fi
24 AC_SUBST(PKG_CONFIG)
25
26 AC_OUTPUT([
27 Makefile
28 gnome-common.spec
29 macros/Makefile
30 macros2/Makefile
31 bin/Makefile
32 doc/Makefile
33 doc-build/Makefile
34 doc-build/gnome-doc-common
35 ])
36