Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
23561f61
Commit
23561f61
authored
Apr 28, 2008
by
Rémi Denis-Courmont
Browse files
Avoid vlc-config for access plugins that are always built
parent
32fcb079
Changes
4
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
23561f61
...
...
@@ -1285,16 +1285,6 @@ VLC_ADD_PLUGINS([i420_rgb])
VLC_ADD_PLUGINS([grey_yuv])
dnl Video codecs:
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:
VLC_ADD_PLUGINS([access_filter_timeshift])
VLC_ADD_PLUGINS([access_filter_record])
...
...
modules/access/Modules.am
View file @
23561f61
...
...
@@ -27,3 +27,13 @@ SOURCES_cdda = \
vcd/cdrom_internals.h \
$(NULL)
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)
modules/access/mms/Modules.am
View file @
23561f61
...
...
@@ -10,3 +10,5 @@ SOURCES_access_mms = \
asf.h \
asf.c \
$(NULL)
libvlc_LTLIBRARIES += libaccess_mms_plugin.la
modules/access/rtmp/Modules.am
View file @
23561f61
...
...
@@ -3,3 +3,4 @@ SOURCES_access_rtmp = \
rtmp_amf_flv.c \
rtmp_amf_flv.h \
$(NULL)
libvlc_LTLIBRARIES += libaccess_rtmp_plugin.la
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment