From 6f0ea35883cec1b68eb1ac2f2bc511f856018f6f Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 11 May 2005 07:44:44 +0000 Subject: Ported to 0.9. Original commit message from CVS: Ported to 0.9. Set up transports, init UDP ports, init RTP session managers. --- gst/rtsp/Makefile.am | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 gst/rtsp/Makefile.am (limited to 'gst/rtsp/Makefile.am') diff --git a/gst/rtsp/Makefile.am b/gst/rtsp/Makefile.am new file mode 100644 index 00000000..2a90944b --- /dev/null +++ b/gst/rtsp/Makefile.am @@ -0,0 +1,22 @@ + +plugin_LTLIBRARIES = libgstrtsp.la + +libgstrtsp_la_SOURCES = gstrtsp.c gstrtspsrc.c \ + rtspconnection.c \ + rtspdefs.c \ + rtspmessage.c \ + rtsptransport.c \ + rtspurl.c \ + sdpmessage.c + +libgstrtsp_la_CFLAGS = $(GST_CFLAGS) +libgstrtsp_la_LIBADD = +libgstrtsp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +check_PROGRAMS = test + +test_SOURCES = test.c rtspdefs.c rtspurl.c rtspconnection.c rtspmessage.c rtsptransport.c sdpmessage.c +test_CFLAGS = $(GST_CFLAGS) +test_LDFLAGS = $(GST_LIBS) + +noinst_HEADERS = gstrtspsrc.h gstrtsp.h rtsptransport.h -- cgit