X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2FModules.am;h=c91bfd0bcf63872bbf4f9649454112aa38d81efb;hb=dbce11f1dab1bc211ea43bda59a72d7db2960633;hp=c2a327ac7e5272978534f658923e647c6011ad23;hpb=22b189b0a9f44cd272b658818af3542a4c865815;p=vlc diff --git a/modules/access/Modules.am b/modules/access/Modules.am index c2a327ac7e..c91bfd0bcf 100644 --- a/modules/access/Modules.am +++ b/modules/access/Modules.am @@ -1,13 +1,49 @@ +# Automake forgets to add a proper tag to libtool with Objective-C files. +# Moreover Libtool should default tag to CC when none is specified but +# obviously does not. Here is a fix for that. +LIBTOOL=@LIBTOOL@ --tag=CC + +BASE_SUBDIRS = dvb mms cdda rtsp rtmp v4l2 vcd vcdx screen +EXTRA_SUBDIRS = bda dshow +SUBDIRS = $(BASE_SUBDIRS) +DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS) + +if HAVE_WIN32 +SUBDIRS += bda dshow +endif + SOURCES_access_file = file.c +SOURCES_access_mmap = mmap.c SOURCES_access_directory = directory.c +SOURCES_access_dv = dv.c SOURCES_access_udp = udp.c SOURCES_access_tcp = tcp.c SOURCES_access_http = http.c SOURCES_access_ftp = ftp.c -SOURCES_slp = slp.c +SOURCES_access_smb = smb.c +SOURCES_access_gnomevfs = gnomevfs.c +SOURCES_access_eyetv = eyetv.m +SOURCES_dvdnav = dvdnav.c +SOURCES_dvdread = dvdread.c +SOURCES_dc1394 = dc1394.c +SOURCES_access_fake = fake.c +SOURCES_pvr = pvr.c videodev2.h +SOURCES_v4l = v4l.c videodev_mjpeg.h +SOURCES_qtcapture = qtcapture.m SOURCES_cdda = \ cdda.c \ vcd/cdrom.c \ vcd/cdrom.h \ 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)