Date: Tue, 31 Jul 2018 23:22:41 +0000 (UTC) From: Barbara Guida <bar@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476028 - in head/multimedia: avidemux-cli avidemux-plugins avidemux/files Message-ID: <201807312322.w6VNMfUi010749@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bar Date: Tue Jul 31 23:22:41 2018 New Revision: 476028 URL: https://svnweb.freebsd.org/changeset/ports/476028 Log: Bump PORTREVISION after r464084. While here, add a patch for multimedia/avidemux-plugins to fix the build with gcc7. Reviewed by: gerald Added: head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp (contents, props changed) Modified: head/multimedia/avidemux-cli/Makefile head/multimedia/avidemux-plugins/Makefile Modified: head/multimedia/avidemux-cli/Makefile ============================================================================== --- head/multimedia/avidemux-cli/Makefile Tue Jul 31 22:14:54 2018 (r476027) +++ head/multimedia/avidemux-cli/Makefile Tue Jul 31 23:22:41 2018 (r476028) @@ -2,7 +2,7 @@ PORTNAME= avidemux PORTVERSION= ${AVIDEMUX_VERSION} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia PKGNAMESUFFIX= -cli Modified: head/multimedia/avidemux-plugins/Makefile ============================================================================== --- head/multimedia/avidemux-plugins/Makefile Tue Jul 31 22:14:54 2018 (r476027) +++ head/multimedia/avidemux-plugins/Makefile Tue Jul 31 23:22:41 2018 (r476028) @@ -3,7 +3,7 @@ PORTNAME= avidemux PORTVERSION= ${AVIDEMUX_VERSION} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia PKGNAMESUFFIX= -plugins Added: head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp Tue Jul 31 23:22:41 2018 (r476028) @@ -0,0 +1,11 @@ +--- avidemux_plugins/ADM_muxers/muxerMp4v2/libmp4v2/src/rtphint.cpp.orig 2016-01-29 09:47:25.000000000 +0100 ++++ avidemux_plugins/ADM_muxers/muxerMp4v2/libmp4v2/src/rtphint.cpp 2018-07-30 08:44:59.947567000 +0200 +@@ -339,7 +339,7 @@ + pSlash = strchr(pSlash, '/'); + if (pSlash != NULL) { + pSlash++; +- if (pSlash != '\0') { ++ if (*pSlash != '\0') { + length = (uint32_t)strlen(pRtpMap) - (pSlash - pRtpMap); + *ppEncodingParams = (char *)MP4Calloc(length + 1); + strncpy(*ppEncodingParams, pSlash, length);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807312322.w6VNMfUi010749>