summaryrefslogtreecommitdiff
path: root/multimedia/libdvdread/patches
diff options
context:
space:
mode:
authordrochner <drochner>2006-05-05 10:42:59 +0000
committerdrochner <drochner>2006-05-05 10:42:59 +0000
commit9bd4292701d56d7abe140d55c2d7204e3256f15a (patch)
treeb5a4b3cf9029cd2f1e6c05f46a89a53dd379df96 /multimedia/libdvdread/patches
parentdac5bcf5b99f68555687ccaf7c25b1e065b3a010 (diff)
downloadpkgsrc-9bd4292701d56d7abe140d55c2d7204e3256f15a.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-ab24
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 );