From b224f37174728d564a27bc945cd38d5d1a231042 Mon Sep 17 00:00:00 2001 From: Stephen Hutchinson Date: Tue, 2 Apr 2013 04:39:12 -0400 Subject: vcd_read_win32.h: fix compilation on MinGW-w64 ntddcdrm.h is no longer under the 'ddk' directory in MinGW-w64, and since MPV focuses on it instead of the old MinGW32, there's no reason to keep that dir prefix, as it stops VCD support from being built at all for Windows. --- configure | 2 +- stream/vcd_read_win32.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index af53b91902..2f0a182fea 100755 --- a/configure +++ b/configure @@ -2452,7 +2452,7 @@ if test "$_vcd" = auto; then if linux || freebsd || netbsd || openbsd || dragonfly || darwin ; then _vcd=yes elif mingw32; then - header_check ddk/ntddcdrm.h && _vcd=yes + header_check ntddcdrm.h && _vcd=yes fi fi if test "$_vcd" = yes; then diff --git a/stream/vcd_read_win32.h b/stream/vcd_read_win32.h index 30679d707e..59570881f0 100644 --- a/stream/vcd_read_win32.h +++ b/stream/vcd_read_win32.h @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include "core/mp_msg.h" typedef struct mp_vcd_priv_st mp_vcd_priv_t; -- cgit v1.2.3