Commit 23561f61 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Avoid vlc-config for access plugins that are always built

parent 32fcb079
...@@ -1285,16 +1285,6 @@ VLC_ADD_PLUGINS([i420_rgb]) ...@@ -1285,16 +1285,6 @@ VLC_ADD_PLUGINS([i420_rgb])
VLC_ADD_PLUGINS([grey_yuv]) VLC_ADD_PLUGINS([grey_yuv])
dnl Video codecs: dnl Video codecs:
VLC_ADD_PLUGINS([rawvideo]) VLC_ADD_PLUGINS([rawvideo])
dnl Accesses:
VLC_ADD_PLUGINS([access_directory])
VLC_ADD_PLUGINS([access_file])
VLC_ADD_PLUGINS([access_udp])
VLC_ADD_PLUGINS([access_tcp])
VLC_ADD_PLUGINS([access_http])
VLC_ADD_PLUGINS([access_mms])
VLC_ADD_PLUGINS([access_ftp])
VLC_ADD_PLUGINS([access_rtmp])
VLC_ADD_PLUGINS([access_fake])
dnl Access filters: dnl Access filters:
VLC_ADD_PLUGINS([access_filter_timeshift]) VLC_ADD_PLUGINS([access_filter_timeshift])
VLC_ADD_PLUGINS([access_filter_record]) VLC_ADD_PLUGINS([access_filter_record])
......
...@@ -27,3 +27,13 @@ SOURCES_cdda = \ ...@@ -27,3 +27,13 @@ SOURCES_cdda = \
vcd/cdrom_internals.h \ vcd/cdrom_internals.h \
$(NULL) $(NULL)
SOURCES_access_jack = jack.c SOURCES_access_jack = jack.c
libvlc_LTLIBRARIES += \
libaccess_file_plugin.la \
libaccess_directory_plugin.la \
libaccess_udp_plugin.la \
libaccess_tcp_plugin.la \
libaccess_http_plugin.la \
libaccess_ftp_plugin.la \
libaccess_fake_plugin.la \
$(NULL)
...@@ -10,3 +10,5 @@ SOURCES_access_mms = \ ...@@ -10,3 +10,5 @@ SOURCES_access_mms = \
asf.h \ asf.h \
asf.c \ asf.c \
$(NULL) $(NULL)
libvlc_LTLIBRARIES += libaccess_mms_plugin.la
...@@ -3,3 +3,4 @@ SOURCES_access_rtmp = \ ...@@ -3,3 +3,4 @@ SOURCES_access_rtmp = \
rtmp_amf_flv.c \ rtmp_amf_flv.c \
rtmp_amf_flv.h \ rtmp_amf_flv.h \
$(NULL) $(NULL)
libvlc_LTLIBRARIES += libaccess_rtmp_plugin.la
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment