]> git.sesse.net Git - vlc/blob - modules/access/rtp/Modules.am
Merge branch 'master' into lpcm_encoder
[vlc] / modules / access / rtp / Modules.am
1 # RTP plugin
2 libvlc_LTLIBRARIES += \
3         librtp_plugin.la
4 librtp_plugin_la_SOURCES = \
5         rtp.c \
6         rtp.h \
7         input.c \
8         session.c
9 librtp_plugin_la_CFLAGS = $(AM_CFLAGS)
10 librtp_plugin_la_LIBADD = $(AM_LIBADD)
11 librtp_plugin_la_DEPENDENCIES =
12
13 if HAVE_GCRYPT
14 librtp_plugin_la_CFLAGS += -DHAVE_SRTP -I$(top_srcdir)/libs/srtp
15 librtp_plugin_la_LIBADD += $(top_builddir)/libs/srtp/libvlc_srtp.la
16 librtp_plugin_la_DEPENDENCIES += $(top_builddir)/libs/srtp/libvlc_srtp.la
17 endif