~ubuntu-branches/ubuntu/natty/empathy/natty-updates

« back to all changes in this revision

Viewing changes to configure.ac

Tags: upstream-0.22.0
ImportĀ upstreamĀ versionĀ 0.22.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT(Empathy, 0.21.90, http://bugzilla.gnome.org/browse.cgi?product=empathy)
 
1
AC_INIT(Empathy, 0.22.0, http://bugzilla.gnome.org/browse.cgi?product=empathy)
2
2
AC_PREREQ(2.59)
3
3
AC_COPYRIGHT([
4
4
  Copyright (C) 2003-2007 Imendio AB
9
9
#   (Interfaces removed:    CURRENT++, AGE=0, REVISION=0)
10
10
#   (Interfaces added:      CURRENT++, AGE++, REVISION=0)
11
11
#   (No interfaces changed:                   REVISION++)
12
 
LIBEMPATHY_CURRENT=10
 
12
LIBEMPATHY_CURRENT=11
13
13
LIBEMPATHY_AGE=0
14
 
LIBEMPATHY_REVISION=0
 
14
LIBEMPATHY_REVISION=1
15
15
 
16
 
LIBEMPATHY_GTK_CURRENT=10
 
16
LIBEMPATHY_GTK_CURRENT=11
17
17
LIBEMPATHY_GTK_AGE=0
18
 
LIBEMPATHY_GTK_REVISION=0
 
18
LIBEMPATHY_GTK_REVISION=1
19
19
 
20
20
AC_SUBST(LIBEMPATHY_CURRENT)
21
21
AC_SUBST(LIBEMPATHY_AGE)
31
31
LIBGLADE_REQUIRED=2.0.0
32
32
LIBPANELAPPLET_REQUIRED=2.10.0
33
33
TELEPATHY_REQUIRED=0.3.1
34
 
TELEPATHY_GLIB_REQUIRED=0.7.0
 
34
TELEPATHY_GLIB_REQUIRED=0.7.3
35
35
MISSION_CONTROL_REQUIRED=4.53
36
36
 
37
37
# Uncomment that to build without deprecated symbols
46
46
 
47
47
GNOME_COMMON_INIT
48
48
 
49
 
AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define)
 
49
AM_INIT_AUTOMAKE(1.9 dist-bzip2 no-define -Wno-portability)
50
50
AM_MAINTAINER_MODE
51
51
AC_ISC_POSIX
52
52
AC_PROG_CC
53
53
AC_HEADER_STDC
54
54
AM_PROG_LIBTOOL
 
55
AM_PROG_MKDIR_P
55
56
AM_PATH_GLIB_2_0
56
57
AC_PATH_XTRA
57
58
IT_PROG_INTLTOOL([0.35.0])
63
64
GLIB_GENMARSHAL=`$PKG_CONFIG glib-2.0 --variable=glib_genmarshal`
64
65
AC_SUBST(GLIB_GENMARSHAL)
65
66
 
 
67
AC_CHECK_PROGS([XSLTPROC], [xsltproc])
 
68
if test -z "$XSLTPROC"; then
 
69
  AC_MSG_ERROR([xsltproc (from libxslt) is required])
 
70
fi
 
71
AC_CHECK_PROGS([PYTHON], [python2.3 python2.4 python2.5 python])
 
72
if test -z "$PYTHON"; then
 
73
  AC_MSG_ERROR([Python is required])
 
74
fi
 
75
 
66
76
EMPATHY_ARG_VALGRIND
67
77
 
68
78
# -----------------------------------------------------------
285
295
 
286
296
AM_CONDITIONAL(HAVE_VOIP, test "x$enable_voip" = "xyes")
287
297
 
288
 
 
289
 
# -----------------------------------------------------------
290
 
# Misc
291
 
# -----------------------------------------------------------
292
 
AC_DEFINE_UNQUOTED([UNINSTALLED_GLADE_DIR], ["`pwd`/libempathy-gtk"], [path to glade files])
293
 
AC_DEFINE_UNQUOTED([UNINSTALLED_DTD_DIR], ["`pwd`/libempathy"], [path to dtd files])
294
 
 
295
298
# -----------------------------------------------------------
296
299
 
297
300
AC_OUTPUT([
299
302
   data/Makefile
300
303
   data/empathy.desktop.in
301
304
   data/icons/Makefile
 
305
   extensions/Makefile
302
306
   po/Makefile.in
303
307
   libempathy/Makefile
304
308
   libempathy/libempathy.pc
320
324
   python/pyempathy/Makefile
321
325
   python/pyempathygtk/Makefile
322
326
   tests/Makefile
 
327
   tests/xml/Makefile
 
328
   tools/Makefile
323
329
])