summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-04-03 12:06:29 +0300
committerSebastian Dröge <sebastian@centricular.com>2016-04-03 12:06:29 +0300
commit60dd95849fccc35e9e676eebbbbe920811017079 (patch)
treee826664b4ee4ee351569e52c6a14290276bdf85e
parent9fab555cc598d701b8911926193f8005471e2ded (diff)
rtsp-server: Use $(GST_NET_LIBS) / $(GST_NET_CFLAGS)
-rw-r--r--gst/rtsp-server/Makefile.am7
1 files changed, 4 insertions, 3 deletions
diff --git a/gst/rtsp-server/Makefile.am b/gst/rtsp-server/Makefile.am
index 4fcd366..4f6ea8f 100644
--- a/gst/rtsp-server/Makefile.am
+++ b/gst/rtsp-server/Makefile.am
@@ -48,12 +48,13 @@ lib_LTLIBRARIES = \
libgstrtspserver_@GST_API_VERSION@_la_SOURCES = \
$(c_sources)
-libgstrtspserver_@GST_API_VERSION@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
+libgstrtspserver_@GST_API_VERSION@_la_CFLAGS = \
+ $(GST_PLUGINS_BASE_CFLAGS) $(GST_NET_CFLAGS) \
+ $(GST_BASE_CFLAGS) $(GST_CFLAGS)
libgstrtspserver_@GST_API_VERSION@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
libgstrtspserver_@GST_API_VERSION@_la_LIBADD = \
- $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \
+ $(GST_PLUGINS_BASE_LIBS) $(GST_NET_LIBS) $(GST_BASE_LIBS) \
-lgstrtp-@GST_API_VERSION@ -lgstrtsp-@GST_API_VERSION@ \
- -lgstnet-@GST_API_VERSION@ \
-lgstsdp-@GST_API_VERSION@ \
-lgstapp-@GST_API_VERSION@ \
$(GST_LIBS) $(GIO_LIBS) $(LIBM)