diff options
author | wiz <wiz@pkgsrc.org> | 2006-04-15 21:23:10 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-04-15 21:23:10 +0000 |
commit | 8015c893cf486562a1d8e0a25779893e0e314f91 (patch) | |
tree | 39e80ef46870bb29dea1aea78cfd85b6ea19b599 | |
parent | 9761aaf37f5d955283941a2e98d66b240d553116 (diff) | |
download | pkgsrc-8015c893cf486562a1d8e0a25779893e0e314f91.tar.gz |
Remove workaround for ifo_types.h header to automatically include
stdint.h or inttypes.h.
1. it is broken
2. the applications should be fixed instead, as the library authors
intended when they changed the behaviour.
Bump PKGREVISION.
-rw-r--r-- | multimedia/libdvdread/Makefile | 4 | ||||
-rw-r--r-- | multimedia/libdvdread/distinfo | 3 | ||||
-rw-r--r-- | multimedia/libdvdread/patches/patch-aa | 17 |
3 files changed, 3 insertions, 21 deletions
diff --git a/multimedia/libdvdread/Makefile b/multimedia/libdvdread/Makefile index a840dc63f1a..7e975cca2db 100644 --- a/multimedia/libdvdread/Makefile +++ b/multimedia/libdvdread/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.13 2006/04/12 17:49:07 joerg Exp $ +# $NetBSD: Makefile,v 1.14 2006/04/15 21:23:10 wiz Exp $ DISTNAME= libdvdread-0.9.5 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= multimedia MASTER_SITES= http://www.dtek.chalmers.se/groups/dvd/dist/ diff --git a/multimedia/libdvdread/distinfo b/multimedia/libdvdread/distinfo index 606707b6da2..cb1b1890f47 100644 --- a/multimedia/libdvdread/distinfo +++ b/multimedia/libdvdread/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.11 2006/04/12 17:19:36 joerg Exp $ +$NetBSD: distinfo,v 1.12 2006/04/15 21:23:10 wiz 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) = 44a947081081cfd5634a57d57b5b871ca17daf9d SHA1 (patch-ab) = 62943ac3f5f017f7715ac6b8907a466b10a24ab8 diff --git a/multimedia/libdvdread/patches/patch-aa b/multimedia/libdvdread/patches/patch-aa deleted file mode 100644 index 041f8723e34..00000000000 --- a/multimedia/libdvdread/patches/patch-aa +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-aa,v 1.6 2006/02/17 15:39:21 rillig Exp $ - ---- dvdread/ifo_types.h.orig Sun Sep 18 20:02:08 2005 -+++ dvdread/ifo_types.h Fri Feb 17 16:30:23 2006 -@@ -28,6 +28,12 @@ - #error "Must include <inttypes.h> or <stdint.h> before any libdvdread header." - #endif - #else -+#ifdef HAVE_INTTYPES_H -+#include <inttypes.h> -+#endif -+#ifdef HAVE_STDINT_H -+#include <stdint.h> -+#endif - #if !defined(UINT8_MAX) || !defined(UINT16_MAX) || !defined(INT32_MAX) - #error "Must include <inttypes.h> or <stdint.h> before any libdvdread header." - #endif |