From d9938992b23ae81e8c9ef37b2eae95805055f84c Mon Sep 17 00:00:00 2001 From: pontscho Date: Thu, 3 Apr 2003 12:00:50 +0000 Subject: [PATCH] 10l git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9811 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/stream.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libmpdemux/stream.c b/libmpdemux/stream.c index 8b669353bc..3afa3bad52 100644 --- a/libmpdemux/stream.c +++ b/libmpdemux/stream.c @@ -59,11 +59,15 @@ void close_cdda(stream_t* s); #include "libsmbclient.h" #endif +#ifdef HAVE_CDDA extern stream_info_t stream_info_cdda; +#endif extern stream_info_t stream_info_file; stream_info_t* auto_open_streams[] = { +#ifdef HAVE_CDDA &stream_info_cdda, +#endif &stream_info_file, NULL };