~darkxst/ubuntu/quantal/telepathy-logger/lp1049210

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2011-04-01 10:10:05 UTC
  • mto: (14.1.1 experimental) (19.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20110401101005-cu311xa4s0esdhpv
Tags: upstream-0.2.8
ImportĀ upstreamĀ versionĀ 0.2.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
m4_define([tpl_major_version], [0])
2
 
m4_define([tpl_minor_version], [4])
3
 
m4_define([tpl_micro_version], [0])
 
2
m4_define([tpl_minor_version], [2])
 
3
m4_define([tpl_micro_version], [8])
4
4
m4_define([tpl_nano_version], [0])
5
5
 
6
6
# If Tpl library source has changed since last release, increment revision
8
8
#  increment current and set revision to 0
9
9
# If interfaces have been added since last release, increment age
10
10
# If interfaces have been removed since last release, set age to 0
11
 
m4_define([tpl_lt_current], [4])
12
 
m4_define([tpl_lt_revision], [1])
13
 
m4_define([tpl_lt_age], [2])
 
11
m4_define([tpl_lt_current], [3])
 
12
m4_define([tpl_lt_revision], [0])
 
13
m4_define([tpl_lt_age], [1])
14
14
 
15
15
# The same for the extensions library produced by --enable-public-extensions
16
16
m4_define([tpl_ext_lt_current], [2])
31
31
 
32
32
 
33
33
AC_INIT([telepathy-logger],[tpl_version],[https://bugs.freedesktop.org/buglist.cgi?product=Telepathy&component=logger])
34
 
AM_SILENT_RULES([yes])
 
34
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
35
35
 
36
36
DBUS_SERVICES_DIR="$datadir/dbus-1/services"
37
37
AC_SUBST(DBUS_SERVICES_DIR)
59
59
AC_SUBST([TPL_EXT_LT_REVISION])
60
60
AC_SUBST([TPL_EXT_LT_AGE])
61
61
 
62
 
AC_PREREQ([2.65])
 
62
AC_PREREQ([2.66])
63
63
AC_COPYRIGHT([
64
64
  Copyright (C) 2003-2007 Imendio AB
65
65
  Copyright (C) 2007-2011 Collabora Ltd.
69
69
GLIB_REQUIRED=2.25.11
70
70
DBUS_REQUIRED=1.1.0
71
71
DBUS_GLIB_REQUIRED=0.82
72
 
TELEPATHY_GLIB_REQUIRED=0.15.6
 
72
TELEPATHY_GLIB_REQUIRED=0.14.0
73
73
 
74
74
# Warning if GLib/GDK/GTK headers are included
75
75
AC_DEFINE(G_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GLib])
76
76
AC_DEFINE(GDK_PIXBUF_DISABLE_SINGLE_INCLUDES, [], [Disable single includes for GDK pixbuf])
77
77
 
78
 
# Disable GLib deprecation warnings for now; GValueArray is deprecated but we
79
 
# need it for dbus-glib.
80
 
AC_DEFINE(GLIB_DISABLE_DEPRECATION_WARNINGS, 1, [Build with GLib deprecated])
81
 
 
82
78
AC_CONFIG_MACRO_DIR([m4])
83
79
AC_CONFIG_HEADERS([config.h])
84
80
AC_CONFIG_SRCDIR([configure.ac])
185
181
fi
186
182
AM_CONDITIONAL([ENABLE_DEBUG], [test "x$enable_debug" = xyes])
187
183
 
 
184
#------------------------------------------------------------
 
185
# Enable Call logging
 
186
#------------------------------------------------------------
 
187
AC_ARG_ENABLE(call,
 
188
    AS_HELP_STRING([--enable-call],[compile with experimental Call logging support]),
 
189
    enable_call=$enableval, enable_call=no )
 
190
 
 
191
if test x$enable_call = xyes; then
 
192
  AC_DEFINE(ENABLE_CALL, [], [Enable Call logging])
 
193
fi
 
194
AM_CONDITIONAL([ENABLE_CALL], [test "x$enable_call" = xyes])
 
195
 
188
196
# -----------------------------------------------------------
189
197
# Coding style checks
190
198
# -----------------------------------------------------------
227
235
        Bugreporting URL............:  ${PACKAGE_BUGREPORT}
228
236
        Public extensions library...:  ${enable_public_extensions}
229
237
        Introspection support.......:  ${found_introspection}
 
238
        Call support................:  ${enable_call}
230
239
 
231
240
"