diff options
author | kwm <kwm@FreeBSD.org> | 2012-09-08 19:02:19 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2012-09-08 19:02:19 +0800 |
commit | 5060cc0fdd1b136901492bc182266f4df11e40a2 (patch) | |
tree | 228d0677f5ad67bdbd9d21209cb4c12ae7611d7b /multimedia/gstreamer-plugins | |
parent | efe9aa34747e5c04d1a17fe2fb6017011ad6cec3 (diff) | |
download | freebsd-ports-gnome-5060cc0fdd1b136901492bc182266f4df11e40a2.tar.gz freebsd-ports-gnome-5060cc0fdd1b136901492bc182266f4df11e40a2.tar.zst freebsd-ports-gnome-5060cc0fdd1b136901492bc182266f4df11e40a2.zip |
Correct the video.h header so c++ in c++11 mode doesnt break.
Submitted by: zeising
Diffstat (limited to 'multimedia/gstreamer-plugins')
-rw-r--r-- | multimedia/gstreamer-plugins/Makefile | 2 | ||||
-rw-r--r-- | multimedia/gstreamer-plugins/files/patch-gst-libs_gst_video_video.h | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/multimedia/gstreamer-plugins/Makefile b/multimedia/gstreamer-plugins/Makefile index b23e23287b22..b8a78fc4392b 100644 --- a/multimedia/gstreamer-plugins/Makefile +++ b/multimedia/gstreamer-plugins/Makefile @@ -10,7 +10,7 @@ PORTNAME= gstreamer PORTVERSION?= ${BASE_PORTVERSION} # When chasing a shared library for a plug-in bump the PORTREVISION in the # plug-in port instead, like ${category}/gstreamer-plugin-${PLUGIN}. -PORTREVISION?= 1 +PORTREVISION?= 2 PORTEPOCH= 3 CATEGORIES?= multimedia audio MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-plugins-base/:base \ diff --git a/multimedia/gstreamer-plugins/files/patch-gst-libs_gst_video_video.h b/multimedia/gstreamer-plugins/files/patch-gst-libs_gst_video_video.h new file mode 100644 index 000000000000..395161326716 --- /dev/null +++ b/multimedia/gstreamer-plugins/files/patch-gst-libs_gst_video_video.h @@ -0,0 +1,14 @@ +--- gst-libs/gst/video/video.h.orig 2012-09-08 10:03:46.000000000 +0200 ++++ gst-libs/gst/video/video.h 2012-09-08 10:07:58.000000000 +0200 +@@ -342,9 +342,9 @@ + */ + #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: |