diff options
author | drochner <drochner@pkgsrc.org> | 2006-05-05 10:42:59 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2006-05-05 10:42:59 +0000 |
commit | c1d4fc310518a12406a359176143a639dbfa7507 (patch) | |
tree | b5a4b3cf9029cd2f1e6c05f46a89a53dd379df96 /multimedia/libdvdread/patches | |
parent | 048a6ed1163505a3663bf77e518662cf49bf2b2c (diff) | |
download | pkgsrc-c1d4fc310518a12406a359176143a639dbfa7507.tar.gz |
update to 0.9.6
changes:
Dragonfly define
Don't add a prefix to device names on Dragonfly and FreeBSD anymore
Fixed a missing attribute packed for app_info in audio_attr_t
Added DVDFileStat() call
Diffstat (limited to 'multimedia/libdvdread/patches')
-rw-r--r-- | multimedia/libdvdread/patches/patch-ab | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/multimedia/libdvdread/patches/patch-ab b/multimedia/libdvdread/patches/patch-ab deleted file mode 100644 index 2dd7efde81b..00000000000 --- a/multimedia/libdvdread/patches/patch-ab +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-ab,v 1.5 2006/04/12 17:19:36 joerg Exp $ - ---- dvdread/dvd_reader.c.orig 2006-01-22 15:45:29.000000000 +0000 -+++ dvdread/dvd_reader.c -@@ -33,7 +33,7 @@ - #include <limits.h> - #include <dirent.h> - --#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__bsdi__) || defined(__DARWIN__) -+#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__bsdi__) || defined(__DARWIN__) || defined(__DragonFly__) - #define SYS_BSD 1 - #endif - -@@ -404,7 +404,9 @@ static char *sun_block2char( const char - static char *bsd_block2char( const char *path ) - { - char *new_path; -- -+#if defined(__DragonFly__) || defined(__FreeBSD__) -+ return (char *) strdup( path ); /* Do not add an r for DragonFly and FreeBSD */ -+#endif - /* If it doesn't start with "/dev/" or does start with "/dev/r" exit */ - if( strncmp( path, "/dev/", 5 ) || !strncmp( path, "/dev/r", 6 ) ) - return (char *) strdup( path ); |