diff options
author | wiz <wiz@pkgsrc.org> | 2018-04-17 22:11:32 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2018-04-17 22:11:32 +0000 |
commit | 336e5df2890185142a3411191da3739351867e28 (patch) | |
tree | 9c9abe340f07828a81ed4b5bcc070769600a037c /multimedia | |
parent | e81a5123759efb198cf22d3061fa59caf3ee2be2 (diff) | |
download | pkgsrc-336e5df2890185142a3411191da3739351867e28.tar.gz |
gstreamer1: patch updates for 1.14.0
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/gst-plugins1-bad/patches/patch-configure | 15 | ||||
-rw-r--r-- | multimedia/gst-plugins1-base/patches/patch-configure | 28 |
2 files changed, 28 insertions, 15 deletions
diff --git a/multimedia/gst-plugins1-bad/patches/patch-configure b/multimedia/gst-plugins1-bad/patches/patch-configure deleted file mode 100644 index 78d4f3b9d90..00000000000 --- a/multimedia/gst-plugins1-bad/patches/patch-configure +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-configure,v 1.8 2018/01/28 19:33:09 wiz Exp $ - -Fix unportable test(1) operator. - ---- configure.orig 2017-12-07 17:03:35.000000000 +0000 -+++ configure -@@ -34995,7 +34995,7 @@ fi - - if test "x$HAVE_GL" = "xyes" -a "x$HAVE_GLES2" = "xyes"; then - GLES3_H_DEFINE=0 -- if test "x$HAVE_GLES3_H" == "xyes"; then -+ if test "x$HAVE_GLES3_H" = "xyes"; then - GLES3_H_DEFINE=1 - fi - GL_INCLUDES=" diff --git a/multimedia/gst-plugins1-base/patches/patch-configure b/multimedia/gst-plugins1-base/patches/patch-configure new file mode 100644 index 00000000000..7cae18e427e --- /dev/null +++ b/multimedia/gst-plugins1-base/patches/patch-configure @@ -0,0 +1,28 @@ +$NetBSD: patch-configure,v 1.5 2018/04/17 22:11:32 wiz Exp $ + +Fix unportable test(1) operator. + +--- configure.orig 2018-03-19 20:11:12.000000000 +0000 ++++ configure +@@ -27552,7 +27552,7 @@ if test "x$ac_cv_header_GLES3_gl3_h" = x + fi + + +- if test "x$HAVE_GLES3_H" == "xyes"; then : ++ if test "x$HAVE_GLES3_H" = "xyes"; then : + + ac_fn_c_check_header_compile "$LINENO" "GLES3/gl3ext.h" "ac_cv_header_GLES3_gl3ext_h" "#include <GLES3/gl3.h> + " +@@ -28443,10 +28443,10 @@ fi + if test "x$HAVE_GL" = "xyes" -a "x$HAVE_GLES2" = "xyes"; then + GLES3_H_DEFINE=0 + GLES3EXT3_H_DEFINE=0 +- if test "x$HAVE_GLES3_H" == "xyes"; then ++ if test "x$HAVE_GLES3_H" = "xyes"; then + GLES3_H_DEFINE=1 + fi +- if test "x$HAVE_GLES3EXT3_H" == "xyes"; then ++ if test "x$HAVE_GLES3EXT3_H" = "xyes"; then + GLES3EXT3_H_DEFINE=1 + fi + GL_INCLUDES=" |