diff options
author | Jonathan Yong <10walls@gmail.com> | 2013-07-13 09:58:10 +0800 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-07-13 04:07:40 +0200 |
commit | e94fc5ee6675ec6873a6d91710b9c450d0423b3f (patch) | |
tree | 49ce3752c1552a34ee43423dd088d42729a7b2ad | |
parent | 27d352afbd2c0ca72c458799fd18a52b08d4652f (diff) | |
download | mpv-e94fc5ee6675ec6873a6d91710b9c450d0423b3f.tar.bz2 mpv-e94fc5ee6675ec6873a6d91710b9c450d0423b3f.tar.xz |
configure: fix vcd detection on Windows
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2372,7 +2372,7 @@ if test "$_vcd" = auto; then if linux || freebsd || netbsd || openbsd || dragonfly || darwin ; then _vcd=yes elif mingw32; then - header_check ntddcdrm.h && _vcd=yes + header_check_broken windows.h ntddcdrm.h && _vcd=yes fi fi if test "$_vcd" = yes; then |