diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2004-09-07 19:29:49 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2004-09-07 19:29:49 +0000 |
commit | 531895aa7be9aeedc07610c8585e4b4cc67b022d (patch) | |
tree | 421e1a2d531dd79dcb0952850601b33ed2314279 | |
parent | 4fa60ae27c3fecb048ba84b9d359fa7f5968b951 (diff) | |
download | xine-lib-531895aa7be9aeedc07610c8585e4b4cc67b022d.tar.gz xine-lib-531895aa7be9aeedc07610c8585e4b4cc67b022d.tar.bz2 |
Commit to xine the MinGW patch already used in external VCD.
CVS patchset: 6947
CVS date: 2004/09/07 19:29:49
-rw-r--r-- | src/input/vcd/vcdio.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/input/vcd/vcdio.c b/src/input/vcd/vcdio.c index 5baa3ee2d..1cbb88e06 100644 --- a/src/input/vcd/vcdio.c +++ b/src/input/vcd/vcdio.c @@ -1,7 +1,7 @@ /* - $Id: vcdio.c,v 1.2 2003/11/06 03:28:18 rockyb Exp $ + $Id: vcdio.c,v 1.3 2004/09/07 19:29:49 valtri Exp $ - Copyright (C) 2002,2003 Rocky Bernstein <rocky@panix.com> + Copyright (C) 2002, 2003, 2004 Rocky Bernstein <rocky@panix.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -37,8 +37,12 @@ #endif #include <errno.h> +#ifdef HAVE_SYS_WAIT_H #include <sys/wait.h> +#endif +#ifdef HAVE_SYS_IOCTL_H #include <sys/ioctl.h> +#endif #ifdef HAVE_VCDNAV #include <libvcd/types.h> |