summaryrefslogtreecommitdiffstats
path: root/libmpdemux/Makefile
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-14 21:52:41 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-14 21:52:41 +0000
commit3d91be0230447a60d737f17e623b4c17527af37a (patch)
tree4bf6ad03af4c3a7488ff05bac1de436188faac93 /libmpdemux/Makefile
parentdbb88f947ed5a41105ded0af78132c4fe7a73ea9 (diff)
downloadmpv-3d91be0230447a60d737f17e623b4c17527af37a.tar.bz2
mpv-3d91be0230447a60d737f17e623b4c17527af37a.tar.xz
fix compilation when dvdkit and dvdread are not available
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17192 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/Makefile')
-rw-r--r--libmpdemux/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/libmpdemux/Makefile b/libmpdemux/Makefile
index 01deaa3f72..62e65e6c97 100644
--- a/libmpdemux/Makefile
+++ b/libmpdemux/Makefile
@@ -31,7 +31,6 @@ SRCS += cdda.c \
# Stream readers/writers
SRCS += stream.c \
- stream_dvd.c \
stream_file.c \
stream_ftp.c \
stream_livedotcom.c \
@@ -89,6 +88,9 @@ SRCS += demuxer.c \
demux_vqf.c \
demux_y4m.c \
+ifeq ($(HAVE_DVD),yes)
+SRCS += stream_dvd.c
+endif
ifeq ($(XMMS_PLUGINS),yes)
SRCS += demux_xmms.c
endif