~woodrow-shen/totem/mybranch

« back to all changes in this revision

Viewing changes to src/backend/Makefile.am

Tags: 2.24.3-3
* totem-mozilla.docs: ship README.browser-plugin which explains how to 
  disable the plugin for some MIME types.
* rules: remove the hack that only let totem-xine support VCDs and 
  DVDs, now that GStreamer supports them. Closes: #370789.
* 01_fake_keypresses.patch: new patch. Completely disable the broken 
  XTEST code that generates fake keypresses. Closes: #500330.
* 90_autotools.patch: regenerated.
* Build-depend on nautilus 2.22 to be sure to build the extension for 
  the correct version.
* totem-xine depends on libxine1-x.
* Standards version is 3.8.1.
* Upload to unstable.
* 04_tracker_build.patch: new patch, stolen upstream. Fix build with 
  latest tracker version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
noinst_PROGRAMS = bvw-test
2
2
 
3
 
noinst_LTLIBRARIES = libbaconvideowidget.la
 
3
lib_LTLIBRARIES = libbaconvideowidget.la
4
4
 
5
5
bvw_test_SOURCES = bvw-test.c
6
6
 
18
18
 
19
19
bvw_test_LDADD = \
20
20
        libbaconvideowidget.la \
21
 
        $(EXTRA_GNOME_LIBS) $(GTK_LIBS) $(XVIDMODE_LIBS) $(NVTV_LIBS) $(XTEST_LIBS) $(X_LIBS)
 
21
        $(EXTRA_GNOME_LIBS) $(XVIDMODE_LIBS) $(XTEST_LIBS)
22
22
 
23
23
BVWMARSHALFILES = baconvideowidget-marshal.c baconvideowidget-marshal.h
24
24
GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0`
38
38
        debug.h
39
39
 
40
40
if TOTEM_GST
41
 
libbaconvideowidget_la_SOURCES += \
42
 
        bacon-video-widget-gst-0.10.c \
43
 
        gstscreenshot.c \
 
41
libbaconvideowidget_la_SOURCES +=                       \
 
42
        bacon-video-widget-gst-0.10.c                   \
 
43
        bacon-video-widget-gst-missing-plugins.c        \
 
44
        bacon-video-widget-gst-missing-plugins.h        \
 
45
        gstscreenshot.c                                 \
44
46
        gstscreenshot.h
45
47
else
46
48
libbaconvideowidget_la_SOURCES += \
53
55
        $(DISABLE_DEPRECATED)                   \
54
56
        $(AM_CPPFLAGS)
55
57
 
56
 
libbaconvideowidget_la_CFLAGS = \
57
 
        $(EXTRA_GNOME_CFLAGS)   \
58
 
        $(NVTV_CFLAGS)          \
59
 
        $(AM_CFLAGS)            \
 
58
libbaconvideowidget_la_CFLAGS =         \
 
59
        $(EXTRA_GNOME_CFLAGS)           \
 
60
        $(MM_CFLAGS)                    \
 
61
        $(MISSING_PLUGINS_CFLAGS)       \
 
62
        $(NVTV_CFLAGS)                  \
 
63
        $(AM_CFLAGS)                    \
60
64
        -I$(top_srcdir)/
61
65
 
62
66
 
63
 
libbaconvideowidget_la_LIBADD = \
64
 
        $(XVIDMODE_LIBS)
 
67
libbaconvideowidget_la_LIBADD = \
 
68
        $(XVIDMODE_LIBS)        \
 
69
        $(MM_LIBS)              \
 
70
        $(GST_LIBS)             \
 
71
        $(NVTV_LIBS)            \
 
72
        $(GTK_LIBS)             \
 
73
        $(X_LIBS)               \
 
74
        $(MISSING_PLUGINS_LIBS)
 
75
 
 
76
libbaconvideowidget_la_LDFLAGS= \
 
77
        -no-undefined
65
78
 
66
79
CLEANFILES = $(BUILT_SOURCES)
67
80