~ubuntu-branches/ubuntu/lucid/libopensync-plugin-evolution2/lucid

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2006-11-29 18:24:38 UTC
  • mfrom: (3.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20061129182438-wimzg0i1oi0vvb8c
Tags: 0.19-1ubuntu1
* Merge from Debian unstable. Remaining changes:
  - debian/rules: don't invoke dh_python(1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
dnl Process this file with autoconf to produce a configure script.
2
2
 
3
3
AC_PREREQ(2.58)
4
 
AC_INIT([OpenSync Evolution 2 Plugin], 0.18, [], [libopensync-plugin-evolution2])
 
4
AC_INIT([OpenSync Evolution 2 Plugin], 0.19, [], [libopensync-plugin-evolution2])
5
5
AM_INIT_AUTOMAKE(foreign)
6
6
AC_CONFIG_SRCDIR(src/evolution2_sync.c)
7
7
AM_CONFIG_HEADER(config.h)
18
18
AC_SUBST(PACKAGE_CFLAGS)
19
19
AC_SUBST(PACKAGE_LIBS)
20
20
 
21
 
PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_10], EDSFOUND=1, [EDSFOUND=0])
 
21
PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_12], EDSFOUND=1, [EDSFOUND=0])
22
22
if test "x${EDSFOUND}" = "x0"; then
23
23
        PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_11], EDSFOUND=1, [EDSFOUND=0])
24
24
        if test "x${EDSFOUND}" = "x0"; then
25
 
                PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_12],,AC_MSG_ERROR(No compatible evolution-data-server was found))
 
25
                PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_10],,AC_MSG_ERROR(No compatible evolution-data-server was found))
26
26
        fi
27
27
fi
28
28
 
49
49
AC_OUTPUT([
50
50
Makefile
51
51
src/Makefile
52
 
misc/evolution2.spec
53
52
tests/Makefile
54
53
])