summaryrefslogtreecommitdiff
path: root/configure.in
blob: a386349e72a76ba5ee49b2f1b0eecb808b545f04 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
AC_INIT(support/easy-vsnprintf.c)

AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(gnome-common, 1.2.1)

AM_MAINTAINER_MODE

AM_CONDITIONAL(INSIDE_GNOME_COMMON, true)

AC_ARG_ENABLE(platform-gnome-2, [  --enable-platform-gnome-2 enable GNOME 2.x platform [default=no]],[platform_gnome_2="$enableval"],[platform_gnome_2=no])
if test "x$platform_gnome_2" != "xyes" ; then
  platform_gnome_2=no
fi

AM_CONDITIONAL(PLATFORM_GNOME_2, test $platform_gnome_2 = yes)

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

AC_ISC_POSIX
AC_PROG_CC
AC_PROG_CPP
AC_STDC_HEADERS
AC_ARG_PROGRAM
AM_PROG_LIBTOOL

AC_PROG_AWK

if test $platform_gnome_2 = yes; then
  GNOME_INTERFACE_VERSION=2
  AC_FYI(Enabling GNOME 2 Platform)
  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://pkgconfig.sourceforce.net.])
  fi
  AC_SUBST(PKG_CONFIG)
  GNOME_SUPPORT_CHECKS
else
  GNOME_INTERFACE_VERSION=1
fi
AC_SUBST(GNOME_INTERFACE_VERSION)

AC_OUTPUT([
gnome-common.pc
gnome-common-2.0.pc
Makefile
macros/Makefile
macros2/Makefile
bin/Makefile
doc/Makefile
support/Makefile
support/gnome-support-2.0.pc])