summaryrefslogtreecommitdiff
path: root/configure.in
blob: ac99c7e5ec51c17968c79a041bcb74628cf5d35a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
AC_INIT(macros2/gnome-pkgconfig.m4)

AM_INIT_AUTOMAKE(gnome-common, 1.2.4)

AM_MAINTAINER_MODE

AM_CONDITIONAL(INSIDE_GNOME_COMMON, true)

AC_DEFUN([AC_FYI], [echo "FYI: " $1])

AC_ISC_POSIX
AC_PROG_CC
AC_PROG_CPP
AC_STDC_HEADERS
AM_PROG_LIBTOOL

AC_PROG_AWK

AC_PATH_PROG(PKG_CONFIG, pkg-config)
if test "!" -x "$PKG_CONFIG" ; then
   AC_MSG_ERROR([
*** You need the latest pkg-config.
*** Get the latest version of pkg-config from
*** <http://www.freedesktop.org/software/pkgconfig/>.])
fi
AC_SUBST(PKG_CONFIG)

AC_OUTPUT([
Makefile
gnome-common.spec
macros/Makefile
macros2/Makefile
bin/Makefile
doc/Makefile])