diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-01-26 13:03:25 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-01-26 13:03:25 +0000 |
commit | 65d5ed7ecfc8b25adb3d1dea7ff2b12844963168 (patch) | |
tree | e08b134423c65d18054f552cce50e7b39c22a1bf /multimedia/xine-lib/patches/patch-ad | |
parent | 2c1be4c3d59f50a7d492db6781deb0f9b5d74037 (diff) | |
download | pkgsrc-65d5ed7ecfc8b25adb3d1dea7ff2b12844963168.tar.gz |
Move xine-lib to the multimedia category (coming from graphics).
This is version 1rc0anb3.
Diffstat (limited to 'multimedia/xine-lib/patches/patch-ad')
-rw-r--r-- | multimedia/xine-lib/patches/patch-ad | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/multimedia/xine-lib/patches/patch-ad b/multimedia/xine-lib/patches/patch-ad new file mode 100644 index 00000000000..779569ebdba --- /dev/null +++ b/multimedia/xine-lib/patches/patch-ad @@ -0,0 +1,25 @@ +$NetBSD: patch-ad,v 1.1.1.1 2004/01/26 13:03:38 jmmv Exp $ + +--- src/input/libdvdnav/vm.c.orig 2003-07-19 19:55:20.000000000 +0200 ++++ src/input/libdvdnav/vm.c 2003-08-24 11:25:12.000000000 +0200 +@@ -35,6 +35,7 @@ + #include <assert.h> + #include <sys/types.h> + #include <sys/stat.h> ++#include <sys/param.h> + #include <fcntl.h> + + #include "ifo_types.h" +@@ -133,10 +134,11 @@ + + static void dvd_read_name(char *name, const char *device) { + int fd, i; +-#if !defined(__FreeBSD__) && !defined(WIN32) ++#if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(WIN32) + off64_t off; + #else + off_t off; ++#define lseek64 lseek + #endif + uint8_t data[DVD_VIDEO_LB_LEN]; + |