summaryrefslogtreecommitdiff
path: root/src/input/input_dvd.c
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2004-12-12 13:51:28 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2004-12-12 13:51:28 +0000
commitdbdcb15d3e50484f1349748fe2cbe102320e032b (patch)
tree820a358140313eb0ed631522a78f399a21e7a880 /src/input/input_dvd.c
parent1de00c1f9d0f1eba90be53b8dd9635b79b68dc2a (diff)
downloadxine-lib-dbdcb15d3e50484f1349748fe2cbe102320e032b.tar.gz
xine-lib-dbdcb15d3e50484f1349748fe2cbe102320e032b.tar.bz2
Check absolute path in $ac_aux_dir (just reflected from gxine).
Compilation fixes for cross-compiling with MinGW32. CVS patchset: 7231 CVS date: 2004/12/12 13:51:28
Diffstat (limited to 'src/input/input_dvd.c')
-rw-r--r--src/input/input_dvd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index e848710ef..6dc24c241 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000-2003 the xine project,
+ * Copyright (C) 2000-2004 the xine project,
* Rich Wareham <richwareham@users.sourceforge.net>
*
* This file is part of xine, a free video player.
@@ -18,7 +18,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: input_dvd.c,v 1.193 2004/12/08 18:24:21 mroi Exp $
+ * $Id: input_dvd.c,v 1.194 2004/12/12 13:51:29 valtri Exp $
*
*/
@@ -41,9 +41,9 @@
#include <stdlib.h>
#include <stddef.h>
-#ifndef _MSC_VER
+#ifndef WIN32
#include <sys/param.h>
-#endif /* _MSC_VER */
+#endif /* WIN32 */
#include <sys/types.h>
#include <sys/stat.h>
@@ -56,13 +56,13 @@
#include <errno.h>
#include <dlfcn.h>
-#ifndef _MSC_VER
+#ifndef WIN32
#include <sys/mount.h>
#include <sys/wait.h>
#include <sys/poll.h>
#include <sys/ioctl.h>
-#endif /* _MSC_VER */
+#endif /* WIN32 */
#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)