diff libmpdemux/Makefile @ 17191:6ac0b5f0d1ed

fix compilation when dvdkit and dvdread are not available
author nicodvb
date Wed, 14 Dec 2005 21:52:41 +0000
parents 56a5f69e9b35
children 60189cd9bbc8
line wrap: on
line diff
--- a/libmpdemux/Makefile	Wed Dec 14 19:35:25 2005 +0000
+++ b/libmpdemux/Makefile	Wed Dec 14 21:52:41 2005 +0000
@@ -31,7 +31,6 @@
 
 # Stream readers/writers
 SRCS += stream.c \
-        stream_dvd.c \
         stream_file.c \
         stream_ftp.c \
         stream_livedotcom.c \
@@ -89,6 +88,9 @@
         demux_vqf.c \
         demux_y4m.c \
 
+ifeq ($(HAVE_DVD),yes)
+SRCS += stream_dvd.c
+endif 
 ifeq ($(XMMS_PLUGINS),yes)
 SRCS += demux_xmms.c
 endif