~ubuntu-branches/ubuntu/trusty/pyatspi/trusty-proposed

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Samuel Thibault
  • Date: 2012-03-21 01:17:33 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120321011733-qbt09ocj3sbjgp2s
Tags: 2.3.92+dfsg-1
* New upstream release
* debian/watch: Fix pattern.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT([pyatspi], [2.3.4], [accessibility-atspi@lists.linux-foundation.org])
 
1
AC_INIT([pyatspi], [2.3.92], [accessibility-atspi@lists.linux-foundation.org])
2
2
AC_CONFIG_AUX_DIR(config)
3
3
 
4
4
LT_RELEASE=$AT_SPI_MAJOR_VERSION.$AT_SPI_MINOR_VERSION
25
25
AC_MSG_CHECKING([whether tests are enabled])
26
26
AC_ARG_ENABLE(tests,
27
27
              [AS_HELP_STRING([--enable-tests], [Build with testing enabled])],
28
 
              enable_tests=yes,
 
28
              enable_tests=$enableval,
29
29
              enable_tests=no)
30
30
AC_MSG_RESULT($enable_tests)
31
 
AM_CONDITIONAL(ENABLE_TESTING, test x$enable_tests == xyes)
 
31
AM_CONDITIONAL(ENABLE_TESTING, test x$enable_tests = xyes)
32
32
 
33
33
if test "$enable_tests" = "yes"; then
34
34
        AM_CHECK_PYMOD(dbus, , , [AC_MSG_ERROR(Could not find python module: dbus)])