gst-plugins-mythtv/src/Makefile.am
author morphbr
Sat Feb 10 20:01:54 2007 +0000 (2007-02-10)
branchtrunk
changeset 349 7005e696052c
parent 44 7a654d6de88f
permissions -rwxr-xr-x
[svn r351] - Bug fix in gmyth_util.c: included support for time without seconds in gmyth_util_string_to_time_val_fmt (XML format from backend)
- Bug fix in gmyth_http.c: fixed bug when there are no channels
- gmyth_vlc.c/h: included support to specify a port when connecting to VLC
- tests: fixed vlc test file regarding the fix above
created script to compile http test app
     1 plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
     2 
     3 plugin_LTLIBRARIES =	libgstmythtvsrc.la
     4 
     5 libgstmythtvsrc_la_SOURCES =	\
     6 	gstmythtvsrc.c
     7 
     8 libgstmythtvsrc_la_CFLAGS = \
     9 	$(GST_CFLAGS) \
    10 	$(GST_BASE_CFLAGS) \
    11 	$(GMYTH_CFLAGS)
    12 
    13 libgstmythtvsrc_la_LDFLAGS = \
    14 	$(GST_PLUGIN_LDFLAGS)
    15 
    16 libgstmythtvsrc_la_LIBADD = \
    17 	$(GST_LIBS) \
    18 	$(GST_BASE_LIBS) \
    19 	$(GMYTH_LIBS)
    20 
    21 noinst_HEADERS = \
    22 	gstmythtvsrc.h
    23