pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/libdvdread Patch dvdread/ifo_types.h to inc...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d4714a6f979f
branches:  trunk
changeset: 507103:d4714a6f979f
user:      xtraeme <xtraeme%pkgsrc.org@localhost>
date:      Thu Jan 26 16:23:12 2006 +0000

description:
Patch dvdread/ifo_types.h to include inttypes.h and stdint.h before
checking for UINT{8,16,32}_MAX. It's better to take this way, otherwise
we'd have to patch all dependent packages requiring libdvdread.

Bump PKGREVISION.

diffstat:

 multimedia/libdvdread/Makefile         |   3 ++-
 multimedia/libdvdread/distinfo         |   3 ++-
 multimedia/libdvdread/patches/patch-aa |  13 +++++++++++++
 3 files changed, 17 insertions(+), 2 deletions(-)

diffs (41 lines):

diff -r 62294b56644d -r d4714a6f979f multimedia/libdvdread/Makefile
--- a/multimedia/libdvdread/Makefile    Thu Jan 26 16:20:45 2006 +0000
+++ b/multimedia/libdvdread/Makefile    Thu Jan 26 16:23:12 2006 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.9 2006/01/23 22:09:26 wiz Exp $
+# $NetBSD: Makefile,v 1.10 2006/01/26 16:23:12 xtraeme Exp $
 
 DISTNAME=      libdvdread-0.9.5
+PKGREVISION=   1
 CATEGORIES=    multimedia
 MASTER_SITES=  http://www.dtek.chalmers.se/groups/dvd/dist/
 
diff -r 62294b56644d -r d4714a6f979f multimedia/libdvdread/distinfo
--- a/multimedia/libdvdread/distinfo    Thu Jan 26 16:20:45 2006 +0000
+++ b/multimedia/libdvdread/distinfo    Thu Jan 26 16:23:12 2006 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.8 2006/01/23 22:09:26 wiz Exp $
+$NetBSD: distinfo,v 1.9 2006/01/26 16:23:12 xtraeme Exp $
 
 SHA1 (libdvdread-0.9.5.tar.gz) = 7f10287953edb6f00667e12fee3a8b101be9f1cd
 RMD160 (libdvdread-0.9.5.tar.gz) = a558dad42487fb39771c89862075bc29c2d054ca
 Size (libdvdread-0.9.5.tar.gz) = 381006 bytes
+SHA1 (patch-aa) = c3fb40699c4379be04169228056d49b1b65e6c05
 SHA1 (patch-ab) = 9aef0b8418a947df46ee66439bed4690a6b3633d
diff -r 62294b56644d -r d4714a6f979f multimedia/libdvdread/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/libdvdread/patches/patch-aa    Thu Jan 26 16:23:12 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.5 2006/01/26 16:23:12 xtraeme Exp $
+
+--- dvdread/ifo_types.h.orig   2006-01-26 17:15:53.000000000 +0100
++++ dvdread/ifo_types.h        2006-01-26 17:16:08.000000000 +0100
+@@ -28,6 +28,8 @@
+ #error "Must include <inttypes.h> or <stdint.h> before any libdvdread header."
+ #endif
+ #else
++#include <inttypes.h>
++#include <stdint.h>
+ #if !defined(UINT8_MAX) || !defined(UINT16_MAX) || !defined(INT32_MAX)
+ #error "Must include <inttypes.h> or <stdint.h> before any libdvdread header."
+ #endif



Home | Main Index | Thread Index | Old Index