1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-16 16:02:54 +02:00

Remove recursion into modules/codec/spudec/

This commit is contained in:
Rémi Denis-Courmont 2012-09-09 15:32:07 +03:00
parent 77e35f3dda
commit a42b001bfd
3 changed files with 3 additions and 9 deletions

View File

@ -4071,7 +4071,6 @@ AC_CONFIG_FILES([
modules/codec/loader/Makefile
modules/codec/omxil/Makefile
modules/codec/shine/Makefile
modules/codec/spudec/Makefile
modules/codec/wmafixed/Makefile
modules/control/Makefile
modules/demux/Makefile

View File

@ -1,4 +1,4 @@
SUBDIRS = loader dmo avcodec shine spudec wmafixed omxil
SUBDIRS = loader dmo avcodec shine wmafixed omxil
SOURCES_a52 = a52.c a52.h
SOURCES_dts = dts.c
SOURCES_flac = flac.c
@ -39,6 +39,7 @@ SOURCES_subsdec = subsdec.c substext.h
SOURCES_subsusf = subsusf.c
SOURCES_t140 = t140.c
SOURCES_crystalhd = crystalhd.c h264_nal.h
SOURCES_spudec = spudec/spudec.c spudec/parse.c spudec/spudec.h
SOURCES_stl = stl.c
SOURCES_ddummy = ddummy.c
SOURCES_edummy = edummy.c
@ -59,6 +60,7 @@ libvlc_LTLIBRARIES += \
liblpcm_plugin.la \
libmpeg_audio_plugin.la \
librawvideo_plugin.la \
libspudec_plugin.la \
libsvcdsub_plugin.la \
libsubsdec_plugin.la \
libsubsusf_plugin.la \

View File

@ -1,7 +0,0 @@
SOURCES_spudec = \
spudec.c \
parse.c \
spudec.h \
$(NULL)
libvlc_LTLIBRARIES += libspudec_plugin.la