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