summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/stream.c b/stream.c
index 5f69194f16..f7829f6119 100644
--- a/stream.c
+++ b/stream.c
@@ -9,13 +9,23 @@
//#include <sys/stat.h>
//#include <fcntl.h>
+#ifdef __FreeBSD__
+#include <sys/cdio.h>
+#include <sys/cdrio.h>
+#else
#include <linux/cdrom.h>
+#endif
#include "stream.h"
extern int verbose; // defined in mplayer.c
+#ifdef __FreeBSD__
+#warning "VCD support under FreeBSD not implemented yet"
+#include "vcd_read_fbsd.c"
+#else
#include "vcd_read.c"
+#endif
//=================== STREAMER =========================