diff options
author | joerg <joerg@pkgsrc.org> | 2013-02-26 11:03:21 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-02-26 11:03:21 +0000 |
commit | 6fc022d8926a67c27bbf44c7ba438efca2b54cdf (patch) | |
tree | 3fc42d48dc93e149d655d9bdbb9b1d42a0a7878e /multimedia | |
parent | 0a7b465e987e00739cad9ddce9efc194f395b585 (diff) | |
download | pkgsrc-6fc022d8926a67c27bbf44c7ba438efca2b54cdf.tar.gz |
Fix header to work with C++11 compilers.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/gst-plugins0.10-base/Makefile | 4 | ||||
-rw-r--r-- | multimedia/gst-plugins0.10-base/distinfo | 3 | ||||
-rw-r--r-- | multimedia/gst-plugins0.10-base/patches/patch-gst-libs_gst_video_video.h | 16 |
3 files changed, 20 insertions, 3 deletions
diff --git a/multimedia/gst-plugins0.10-base/Makefile b/multimedia/gst-plugins0.10-base/Makefile index cd31836b26a..f262b16b10b 100644 --- a/multimedia/gst-plugins0.10-base/Makefile +++ b/multimedia/gst-plugins0.10-base/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.25 2012/10/30 12:56:00 drochner Exp $ +# $NetBSD: Makefile,v 1.26 2013/02/26 11:03:21 joerg Exp $ # .include "Makefile.common" -PKGREVISION= 5 +PKGREVISION= 6 #CONFIGURE_ARGS+= --disable-silent-rules diff --git a/multimedia/gst-plugins0.10-base/distinfo b/multimedia/gst-plugins0.10-base/distinfo index e54166f036a..5e831b2ef51 100644 --- a/multimedia/gst-plugins0.10-base/distinfo +++ b/multimedia/gst-plugins0.10-base/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.35 2012/03/04 11:19:06 obache Exp $ +$NetBSD: distinfo,v 1.36 2013/02/26 11:03:21 joerg Exp $ SHA1 (gst-plugins-base-0.10.36.tar.bz2) = e675401b62a6bf2e5ea966e833afd005a585e978 RMD160 (gst-plugins-base-0.10.36.tar.bz2) = b601372b3a1c04de63f69ba350c5010c99dbc6ae Size (gst-plugins-base-0.10.36.tar.bz2) = 3036143 bytes SHA1 (patch-ab) = 17a44f9b50d4acf9b0effd80911698a2f9813e4d SHA1 (patch-ac) = a8a56dc16f3cc908d93aaed810fc5a9c6a875cc2 +SHA1 (patch-gst-libs_gst_video_video.h) = ba07c80ab91a0086234073c3fcbf28315502449b SHA1 (patch-gst_audioresample_resample.c) = 77a88286c74df80f5f724c922a5ecec0341d4788 diff --git a/multimedia/gst-plugins0.10-base/patches/patch-gst-libs_gst_video_video.h b/multimedia/gst-plugins0.10-base/patches/patch-gst-libs_gst_video_video.h new file mode 100644 index 00000000000..ddd253d788d --- /dev/null +++ b/multimedia/gst-plugins0.10-base/patches/patch-gst-libs_gst_video_video.h @@ -0,0 +1,16 @@ +$NetBSD: patch-gst-libs_gst_video_video.h,v 1.1 2013/02/26 11:03:21 joerg Exp $ + +--- gst-libs/gst/video/video.h.orig 2013-02-25 16:23:34.000000000 +0000 ++++ gst-libs/gst/video/video.h +@@ -342,9 +342,9 @@ typedef enum { + */ + #define GST_VIDEO_CAPS_RGB8_PALETTED \ + "video/x-raw-rgb, bpp = (int)8, depth = (int)8, " \ +- "width = "GST_VIDEO_SIZE_RANGE" , " \ ++ "width = " GST_VIDEO_SIZE_RANGE " , " \ + "height = " GST_VIDEO_SIZE_RANGE ", " \ +- "framerate = "GST_VIDEO_FPS_RANGE ++ "framerate = " GST_VIDEO_FPS_RANGE + + /** + * GST_VIDEO_CAPS_YUV: |