~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
2
m4_define([tpl_minor_version], [2])
3
 
m4_define([tpl_micro_version], [6])
 
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], [2])
12
 
m4_define([tpl_lt_revision], [3])
13
 
m4_define([tpl_lt_age], [0])
 
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])
107
107
  AC_MSG_ERROR([xsltproc (from libxslt) is required])
108
108
fi
109
109
 
 
110
AM_PATH_PYTHON([2.5])
 
111
 
110
112
# -----------------------------------------------------------
111
113
# Error flags
112
114
# -----------------------------------------------------------
179
181
fi
180
182
AM_CONDITIONAL([ENABLE_DEBUG], [test "x$enable_debug" = xyes])
181
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
 
182
196
# -----------------------------------------------------------
183
197
# Coding style checks
184
198
# -----------------------------------------------------------
218
232
        Compiler Flags..............:  ${CFLAGS} ${ERROR_CFLAGS}
219
233
        Prefix......................:  ${prefix}
220
234
        Coding style checks.........:  ${ENABLE_CODING_STYLE_CHECKS}
221
 
        Python Twisted tests........:  ${TEST_PYTHON}
222
235
        Bugreporting URL............:  ${PACKAGE_BUGREPORT}
223
236
        Public extensions library...:  ${enable_public_extensions}
224
237
        Introspection support.......:  ${found_introspection}
 
238
        Call support................:  ${enable_call}
225
239
 
226
240
"