~ubuntu-branches/ubuntu/trusty/gnome-contacts/trusty

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Jeremy Bicha, Michael Biebl
  • Date: 2013-09-19 18:23:06 UTC
  • mfrom: (1.3.10) (0.3.4 experimental)
  • mto: This revision was merged to the branch mainline in revision 40.
  • Revision ID: package-import@ubuntu.com-20130919182306-rcatwotzg94pr884
Tags: 3.8.3-1
[ Jeremy Bicha ]
* debian/control.in:
  - Drop alternate build-depends on valac-0.18 since it's no longer
    in Debian

[ Michael Biebl ]
* New upstream release.
* Loosen Build-Depends on libgnome-desktop-3-dev, we do not strictly require
  version (>= 3.6.0) which is not yet available in unstable.
* Bump Standards-Version to 3.9.4. No further changes.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_PREREQ([2.67])
2
 
AC_INIT([gnome-contacts],[3.4.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-contacts])
 
2
AC_INIT([gnome-contacts],[3.8.3],[http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-contacts])
3
3
AC_CONFIG_SRCDIR([src/main.vala])
4
4
AC_CONFIG_HEADERS([config.h])
5
5
AC_CONFIG_MACRO_DIR([m4])
6
 
AM_INIT_AUTOMAKE
 
6
AM_INIT_AUTOMAKE([tar-ustar dist-xz no-dist-gzip])
7
7
# Enable silent rules is available
8
8
AM_SILENT_RULES([yes])
9
9
AM_MAINTAINER_MODE([enable])
10
10
AC_CONFIG_FILES([Makefile
 
11
                libgd/Makefile
11
12
                vapi/Makefile
12
13
                src/Makefile
13
14
                data/Makefile
17
18
 
18
19
LT_INIT
19
20
AC_PROG_CC
20
 
AM_PROG_VALAC([0.14.0])
 
21
AM_PROG_VALAC([0.17.2])
21
22
AC_PROG_INSTALL
22
23
 
23
24
GLIB_GSETTINGS
36
37
pkg_modules="gtk+-3.0 >= 3.4.0
37
38
             glib-2.0 >= 2.31.10
38
39
             gnome-desktop-3.0
39
 
             folks >= 0.6.1.1
 
40
             folks >= 0.7.3
40
41
             folks-telepathy
41
42
             folks-eds
42
43
             libnotify
43
44
             telepathy-glib >= 0.17.5
44
 
             libebook-1.2 >= 3.2
45
 
             libedataserver-1.2 >= 3.2
 
45
             libebook-1.2 >= 3.5.3
 
46
             libedataserver-1.2 >= 3.5.3
46
47
             goa-1.0
47
 
             gee-1.0
 
48
             gee-0.8
48
49
             "
49
50
PKG_CHECK_MODULES(CONTACTS, [$pkg_modules])
50
51
 
51
 
CONTACTS_PACKAGES="--pkg gtk+-3.0 --pkg gio-2.0 --pkg folks --pkg folks-telepathy --pkg folks-eds --pkg libnotify"
 
52
CONTACTS_PACKAGES="--pkg gtk+-3.0 --pkg gio-2.0 --pkg gio-unix-2.0 --pkg folks --pkg folks-telepathy --pkg folks-eds --pkg libnotify"
52
53
AC_SUBST(CONTACTS_PACKAGES)
53
54
 
 
55
# Optional dependency for the user accounts panel
 
56
AC_ARG_WITH([cheese],
 
57
            AS_HELP_STRING([--with-cheese], [enable cheese webcam support]),,
 
58
            with_cheese=auto)
 
59
 
 
60
if test x"$with_cheese" != x"no" ; then
 
61
   PKG_CHECK_MODULES(CHEESE, cheese-gtk >= 3.3.91 cheese, [have_cheese=yes], [have_cheese=no])
 
62
   if test x${have_cheese} = xyes; then
 
63
     AC_DEFINE(HAVE_CHEESE, 1, [Define to 1 to enable cheese webcam support])
 
64
   fi
 
65
   if test x${with_cheese} = xyes && test x${have_cheese} = xno; then
 
66
     AC_MSG_ERROR([Cheese configured but not found])
 
67
   fi
 
68
else
 
69
   have_cheese=no
 
70
fi
 
71
AM_CONDITIONAL(BUILD_CHEESE, test x${have_cheese} = xyes)
 
72
 
54
73
#############
55
74
# Resources #
56
75
#############
58
77
GLIB_COMPILE_RESOURCES=`$PKG_CONFIG --variable glib_compile_resources gio-2.0`
59
78
AC_SUBST(GLIB_COMPILE_RESOURCES)
60
79
 
 
80
dnl libgd
 
81
LIBGD_INIT([
 
82
  gtk-hacks
 
83
  main-toolbar
 
84
  notification
 
85
  revealer
 
86
  static
 
87
  vapi
 
88
])
 
89
 
61
90
AC_OUTPUT