diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-09-17 13:01:07 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-09-17 13:01:07 +0000 |
commit | 809a64d5911496a24617e3158e719e93c161e582 (patch) | |
tree | 931b908c4a47be9acae7fd6a916a0e9ae0e55847 /src/input/libdvdnav/remap.c | |
parent | a4f82c060ea232d998a7d1162768b4efb9dfd67e (diff) | |
download | xine-lib-809a64d5911496a24617e3158e719e93c161e582.tar.gz xine-lib-809a64d5911496a24617e3158e719e93c161e582.tar.bz2 |
DVDNAV changes:
improve MinGW support, kFreeBSD support
define HAVE_* when provided replacement functions in xine-lib
CVS patchset: 8268
CVS date: 2006/09/17 13:01:07
Diffstat (limited to 'src/input/libdvdnav/remap.c')
-rw-r--r-- | src/input/libdvdnav/remap.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/input/libdvdnav/remap.c b/src/input/libdvdnav/remap.c index 8fffc6e29..86cf3a4ad 100644 --- a/src/input/libdvdnav/remap.c +++ b/src/input/libdvdnav/remap.c @@ -15,21 +15,24 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: remap.c,v 1.4 2003/08/25 21:51:40 f1rmb Exp $ + * $Id: remap.c,v 1.5 2006/09/17 13:01:08 valtri Exp $ */ #include <stdlib.h> #include <string.h> #include <stdio.h> -#ifndef _MSC_VER +#ifdef HAVE_SYS_PARAM_H #include <sys/param.h> +#endif + +#ifdef HAVE_SYS_FCNTL_H #include <sys/fcntl.h> #else #ifndef MAXPATHLEN #define MAXPATHLEN 255 #endif -#endif /* _MSC_VER */ +#endif /* HAVE fcntl.h */ #include <assert.h> #include "remap.h" |