~ubuntu-branches/ubuntu/precise/gvfs/precise-proposed

« back to all changes in this revision

Viewing changes to .pc/02_deprecated.patch/common/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2011-11-17 07:43:33 UTC
  • mfrom: (1.1.77) (33.1.18 experimental)
  • Revision ID: package-import@ubuntu.com-20111117074333-ua4kq03btq4shvb1
Tags: 1.10.1-1ubuntu1
* Merge with Debian experimental. Remaining Ubuntu changes:
  - debian/control.in: Drop libbluray-dev build dependency (in universe).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
NULL =
 
2
 
 
3
lib_LTLIBRARIES=libgvfscommon.la
 
4
 
 
5
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gvfs \
 
6
        -I$(top_srcdir)/daemon \
 
7
        $(GLIB_CFLAGS) $(DBUS_CFLAGS) $(BLURAY_CFLAGS) \
 
8
        -DG_LOG_DOMAIN=\"GVFS\" -DG_DISABLE_DEPRECATED \
 
9
        -DDBUS_API_SUBJECT_TO_CHANGE
 
10
 
 
11
libgvfscommon_la_SOURCES =      \
 
12
        gsysutils.c gsysutils.h \
 
13
        gvfsdbusutils.c gvfsdbusutils.h \
 
14
        gmountspec.c gmountspec.h \
 
15
        gmountoperationdbus.c gmountoperationdbus.h \
 
16
        gmountsource.c gmountsource.h \
 
17
        gmounttracker.c gmounttracker.h \
 
18
        gvfsdaemonprotocol.c gvfsdaemonprotocol.h \
 
19
        gvfsicon.h gvfsicon.c \
 
20
        gvfsmountinfo.h gvfsmountinfo.c \
 
21
        gvfsfileinfo.c gvfsfileinfo.h \
 
22
        $(NULL)
 
23
 
 
24
# needed by cygwin (see bug #564003)
 
25
libgvfscommon_la_LDFLAGS = -no-undefined
 
26
 
 
27
libgvfscommon_la_LIBADD =       \
 
28
        $(DBUS_LIBS)            \
 
29
        $(GLIB_LIBS)            \
 
30
        $(BLURAY_LIBS)
 
31
 
 
32
if HAVE_AVAHI
 
33
lib_LTLIBRARIES += libgvfscommon-dnssd.la
 
34
 
 
35
libgvfscommon_dnssd_la_SOURCES =        \
 
36
        gvfsdnssdutils.c gvfsdnssdutils.h \
 
37
        gvfsdnssdresolver.c gvfsdnssdresolver.h \
 
38
        $(NULL)
 
39
 
 
40
libgvfscommon_dnssd_la_CFLAGS = \
 
41
        $(AVAHI_CFLAGS)
 
42
 
 
43
libgvfscommon_dnssd_la_LIBADD = \
 
44
        libgvfscommon.la \
 
45
        $(AVAHI_LIBS) \
 
46
        $(GLIB_LIBS)
 
47
endif
 
48