mirror of
https://github.com/mpv-player/mpv
synced 2025-01-16 22:37:28 +01:00
MinGW support in mpdvdkit
patch by Sascha Sommer git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10444 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
150b1bc680
commit
bc7792fd7c
4
configure
vendored
4
configure
vendored
@ -3779,13 +3779,13 @@ fi
|
||||
echocheck "DVD support (libmpdvdkit)"
|
||||
if test "$_dvdkit" = auto ; then
|
||||
_dvdkit=no
|
||||
if linux || freebsd || netbsd || darwin || cygwin || openbsd || sunos || hpux; then
|
||||
if linux || freebsd || netbsd || darwin || cygwin || mingw32 || openbsd || sunos || hpux; then
|
||||
test -f "./libmpdvdkit2/Makefile" && _dvdkit=yes
|
||||
test -f "./libmpdvdkit/Makefile" && _dvdkit=yes
|
||||
fi
|
||||
fi
|
||||
if test "$_dvdkit" = yes ; then
|
||||
if test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || test "$_dvdio" = yes || test "$_bsdi_dvd" = yes || test "$_hpux_scsi_h" = yes || darwin || cygwin ; then
|
||||
if test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || test "$_dvdio" = yes || test "$_bsdi_dvd" = yes || test "$_hpux_scsi_h" = yes || darwin || cygwin || mingw32 ; then
|
||||
if test -f "./libmpdvdkit2/Makefile" ; then
|
||||
_inputmodules="mpdvdkit2 $_inputmodules"
|
||||
_dvdread=libmpdvdkit2
|
||||
|
@ -310,7 +310,9 @@ dvd_reader_t *DVDOpen( const char *path )
|
||||
if( cdir >= 0 ) {
|
||||
chdir( path_copy );
|
||||
new_path = getcwd( NULL, PATH_MAX );
|
||||
#ifndef __MINGW32__
|
||||
fchdir( cdir );
|
||||
#endif
|
||||
close( cdir );
|
||||
if( new_path ) {
|
||||
free( path_copy );
|
||||
|
Loading…
Reference in New Issue
Block a user