diff options
author | joerg <joerg> | 2005-11-02 15:09:07 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-11-02 15:09:07 +0000 |
commit | 6a81f83dee40101cb4bdca99e91620686214f8a6 (patch) | |
tree | bef7a32388904e786563cc13774a4193b156f540 /multimedia | |
parent | dd9a4b0f08d4f2d5f6e1a75065ce534e84a8bc77 (diff) | |
download | pkgsrc-6a81f83dee40101cb4bdca99e91620686214f8a6.tar.gz |
We need sys/time.h for timeval on DragonFly. Since time.h and sys/time.h
might conflict on some systems, conditionally include it only on
DragonFly.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/gst-plugins/distinfo | 4 | ||||
-rw-r--r-- | multimedia/gst-plugins/patches/patch-ab | 13 |
2 files changed, 13 insertions, 4 deletions
diff --git a/multimedia/gst-plugins/distinfo b/multimedia/gst-plugins/distinfo index 247b00fffc0..0565a60175a 100644 --- a/multimedia/gst-plugins/distinfo +++ b/multimedia/gst-plugins/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.27 2005/10/21 07:44:08 xtraeme Exp $ +$NetBSD: distinfo,v 1.28 2005/11/02 15:09:07 joerg Exp $ SHA1 (gst-plugins-0.8.11.tar.bz2) = 4a9be6b62dd0e8a73616e8e93f7a3ace8aec8c59 RMD160 (gst-plugins-0.8.11.tar.bz2) = 833aec123a52cd0f36ec883c349cc8d69090d749 Size (gst-plugins-0.8.11.tar.bz2) = 2439654 bytes SHA1 (patch-aa) = 288c0b1b6fa295ade5234ab6166140e4f178cb30 -SHA1 (patch-ab) = ca6dd27984a020f5a01e14d785e425e8cd219e74 +SHA1 (patch-ab) = 7fc0f2214692ab11542527768726eee5dff7d8c8 SHA1 (patch-ac) = b40375ef906a77c6819c379ea789f568c2cef907 SHA1 (patch-ae) = 3509dd08d3e010e9eb85c71ae6c42e28f6f9ec2d SHA1 (patch-ag) = 264ef4cb6a4fa8eb65ff55ca1c0947d3566a64b8 diff --git a/multimedia/gst-plugins/patches/patch-ab b/multimedia/gst-plugins/patches/patch-ab index ce979dffc43..72ed06e10aa 100644 --- a/multimedia/gst-plugins/patches/patch-ab +++ b/multimedia/gst-plugins/patches/patch-ab @@ -1,8 +1,17 @@ -$NetBSD: patch-ab,v 1.9 2005/05/25 21:07:59 jmmv Exp $ +$NetBSD: patch-ab,v 1.10 2005/11/02 15:09:07 joerg Exp $ --- gst/librfb/gstrfbsrc.c.orig 2005-05-17 08:41:44.000000000 +0000 +++ gst/librfb/gstrfbsrc.c -@@ -27,6 +27,7 @@ +@@ -22,11 +22,16 @@ + #include "config.h" + #endif + ++#if defined(__DragonFly__) ++#include <sys/time.h> ++#endif ++ + #include <gst/gst.h> + #include <gst/video/video.h> #include <string.h> #include <stdlib.h> |