~ubuntu-branches/ubuntu/saucy/unity-greeter/saucy-proposed

« back to all changes in this revision

Viewing changes to .pc/spawn-gsd-directly.patch/configure.ac

  • Committer: Package Import Robot
  • Author(s): Michael Terry
  • Date: 2013-01-31 12:39:26 UTC
  • Revision ID: package-import@ubuntu.com-20130131123926-jia15yn1ysa4k62c
Tags: 13.04.1-0ubuntu2
* debian/patches/spawn-gsd-directly.patch:
  - Spawn gnome-settings-daemon directly, since it dropped DBus activation
    support in 3.6.  LP: #1110716

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Mode: m4; indent-tabs-mode: nil; tab-width: 4 -*-
 
2
 
 
3
dnl Process this file with autoconf to produce a configure script.
 
4
 
 
5
AC_INIT(unity-greeter, 13.04.1)
 
6
AC_CONFIG_MACRO_DIR(m4)
 
7
AM_INIT_AUTOMAKE
 
8
AM_PROG_CC_C_O
 
9
UG_PROG_VALAC([valac-0.18 valac-0.16 valac], [0.15.1])
 
10
AM_CONFIG_HEADER(config.h)
 
11
AM_MAINTAINER_MODE
 
12
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)])
 
13
 
 
14
GLIB_GSETTINGS
 
15
 
 
16
dnl ###########################################################################
 
17
dnl Dependencies
 
18
dnl ###########################################################################
 
19
 
 
20
PKG_CHECK_MODULES(UNITY_GREETER, [
 
21
    gtk+-3.0
 
22
    gdk-x11-3.0
 
23
    indicator3-0.4
 
24
    liblightdm-gobject-1 >= 1.4.0
 
25
    freetype2
 
26
    cairo-ft
 
27
    libcanberra
 
28
])
 
29
 
 
30
INDICATORDIR=`$PKG_CONFIG --variable=indicatordir indicator3-0.4`
 
31
AC_SUBST(INDICATORDIR)
 
32
 
 
33
dnl ###########################################################################
 
34
dnl Internationalization
 
35
dnl ###########################################################################
 
36
 
 
37
IT_PROG_INTLTOOL(0.35.0)
 
38
GETTEXT_PACKAGE=unity-greeter
 
39
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", Gettext package)
 
40
AC_SUBST(GETTEXT_PACKAGE)
 
41
 
 
42
dnl ###########################################################################
 
43
dnl Files to generate
 
44
dnl ###########################################################################
 
45
 
 
46
AC_CONFIG_FILES([
 
47
Makefile
 
48
data/Makefile
 
49
po/Makefile.in
 
50
src/Makefile
 
51
tests/Makefile
 
52
])
 
53
AC_OUTPUT