summaryrefslogtreecommitdiff
path: root/multimedia/mythtv/files/patch-libs__libmyth__compat.h
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-12-19 13:03:53 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-12-19 13:03:53 +0000
commit49efbac1af42fc04a87227134eecf39cedf4f209 (patch)
tree34c003c981347e372c19def235acb7d10f813f35 /multimedia/mythtv/files/patch-libs__libmyth__compat.h
parent- Mark BROKEN on 6.x: does not configure (diff)
- Update to 0.22
PR: 141722 141723 141724 Submitted by: Bernhard Froehlich <decke@bluelife.at> (maintainer)
Diffstat (limited to 'multimedia/mythtv/files/patch-libs__libmyth__compat.h')
-rw-r--r--multimedia/mythtv/files/patch-libs__libmyth__compat.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/multimedia/mythtv/files/patch-libs__libmyth__compat.h b/multimedia/mythtv/files/patch-libs__libmyth__compat.h
deleted file mode 100644
index b6690520ce93..000000000000
--- a/multimedia/mythtv/files/patch-libs__libmyth__compat.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./libs/libmyth/compat.h.orig 2008-02-18 02:35:01.000000000 -0500
-+++ ./libs/libmyth/compat.h 2009-02-23 09:59:26.000000000 -0500
-@@ -273,7 +273,7 @@
-
- // Libdvdnav now uses off64_t lseek64(), which Darwin doesn't have.
- // Luckily, its lseek() is already 64bit compatible
--#ifdef CONFIG_DARWIN
-+#if defined(CONFIG_DARWIN) || defined(__FreeBSD__)
- typedef off_t off64_t;
- #define lseek64(f,o,w) lseek(f,o,w)
- #endif