~ubuntu-branches/ubuntu/trusty/sflphone/trusty

« back to all changes in this revision

Viewing changes to gnome/src/dbus/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2014-01-28 18:23:36 UTC
  • mfrom: (4.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20140128182336-jrsv0k9u6cawc068
Tags: 1.3.0-1
* New upstream release 
  - Fixes "New Upstream Release" (Closes: #735846)
  - Fixes "Ringtone does not stop" (Closes: #727164)
  - Fixes "[sflphone-kde] crash on startup" (Closes: #718178)
  - Fixes "sflphone GUI crashes when call is hung up" (Closes: #736583)
* Build-Depends: ensure GnuTLS 2.6
  - libucommon-dev (>= 6.0.7-1.1), libccrtp-dev (>= 2.0.6-3)
  - Fixes "FTBFS Build-Depends libgnutls{26,28}-dev" (Closes: #722040)
* Fix "boost 1.49 is going away" unversioned Build-Depends: (Closes: #736746)
* Add Build-Depends: libsndfile-dev, nepomuk-core-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
host_triplet = @host@
37
37
DIST_COMMON = README $(srcdir)/../../globals.mak $(srcdir)/Makefile.am \
38
38
        $(srcdir)/Makefile.in
39
 
@SFL_VIDEO_TRUE@am__append_1 = video_controls-glue.h
 
39
@SFL_PRESENCE_TRUE@am__append_1 = presencemanager-glue.h
 
40
@SFL_VIDEO_TRUE@am__append_2 = video_controls-glue.h
40
41
subdir = src/dbus
41
42
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
42
43
am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
58
59
libdbus_la_LIBADD =
59
60
am__libdbus_la_SOURCES_DIST = dbus.c dbus.h callmanager-glue.h \
60
61
        configurationmanager-glue.h instance-glue.h marshaller.c \
61
 
        marshaller.h video_controls-glue.h
 
62
        marshaller.h presencemanager-glue.h video_controls-glue.h
62
63
am__objects_1 =
63
 
am__objects_2 = libdbus_la-marshaller.lo $(am__objects_1)
 
64
am__objects_2 = libdbus_la-marshaller.lo $(am__objects_1) \
 
65
        $(am__objects_1)
64
66
am_libdbus_la_OBJECTS = libdbus_la-dbus.lo $(am__objects_2)
65
67
libdbus_la_OBJECTS = $(am_libdbus_la_OBJECTS)
66
68
AM_V_lt = $(am__v_lt_@AM_V@)
298
300
 
299
301
noinst_LTLIBRARIES = libdbus.la
300
302
BUILT_SOURCES = callmanager-glue.h configurationmanager-glue.h \
301
 
        instance-glue.h marshaller.c marshaller.h $(am__append_1)
 
303
        instance-glue.h marshaller.c marshaller.h $(am__append_1) \
 
304
        $(am__append_2)
302
305
libdbus_la_SOURCES = \
303
 
    dbus.c              \
304
 
        dbus.h                          \
 
306
        dbus.c          \
 
307
        dbus.h          \
305
308
    $(BUILT_SOURCES)
306
309
 
307
310
libdbus_la_LDFLAGS = $(DBUSGLIB_LDFLAGS) $(LIBNOTIFY_LDFLAGS) \
626
629
        if [ -f $(ASTYLERC) ] ; then \
627
630
                find $(top_srcdir)/src/ -regex ".*\.\(h\|c\)" -exec $(indent) --options=$(ASTYLERC) {} \; ; \
628
631
        fi
 
632
@SFL_PRESENCE_TRUE@presencemanager-glue.h: presencemanager-introspec.xml Makefile.am
 
633
@SFL_PRESENCE_TRUE@     dbus-binding-tool --mode=glib-client $< > $@
629
634
@SFL_VIDEO_TRUE@video_controls-glue.h: video_controls-introspec.xml Makefile.am
630
635
@SFL_VIDEO_TRUE@        dbus-binding-tool --mode=glib-client $< > $@
631
636