From owner-svn-ports-head@freebsd.org Thu Nov 22 00:07:36 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D15F411041E8; Thu, 22 Nov 2018 00:07:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 53CB37D726; Thu, 22 Nov 2018 00:07:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3671C279A3; Thu, 22 Nov 2018 00:07:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wAM07Zb7069659; Thu, 22 Nov 2018 00:07:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAM07ZL0069658; Thu, 22 Nov 2018 00:07:35 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201811220007.wAM07ZL0069658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 22 Nov 2018 00:07:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485567 - head/multimedia/cmrt/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/cmrt/files X-SVN-Commit-Revision: 485567 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 53CB37D726 X-Spamd-Result: default: False [1.57 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_LONG(0.40)[0.400,0]; NEURAL_SPAM_MEDIUM(0.49)[0.489,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.68)[0.681,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Nov 2018 00:07:36 -0000 Author: jbeich Date: Thu Nov 22 00:07:34 2018 New Revision: 485567 URL: https://svnweb.freebsd.org/changeset/ports/485567 Log: multimedia/cmrt: expand patch comments Modified: head/multimedia/cmrt/files/patch-memalign (contents, props changed) Modified: head/multimedia/cmrt/files/patch-memalign ============================================================================== --- head/multimedia/cmrt/files/patch-memalign Thu Nov 22 00:07:22 2018 (r485566) +++ head/multimedia/cmrt/files/patch-memalign Thu Nov 22 00:07:34 2018 (r485567) @@ -1,5 +1,31 @@ memalign is Linux-specific, so use C11 aligned_alloc instead +In file included from decode_hybrid_vp9.cpp:67: +In file included from ./cmrt_api.h:35: +In file included from /usr/local/include/cm_rt.h:41: +In file included from /usr/local/include/cm_rt_linux.h:51: +/usr/include/malloc.h:3:2: error: " has been replaced by " +#error " has been replaced by " + ^ +/usr/local/include/cm_rt_linux.h:337:9: error: use of undeclared identifier 'memalign' + return memalign(alignment, size); + ^ +In file included from os_utilities.c:43: +/usr/include/malloc.h:3:2: error: " has been replaced by " +#error " has been replaced by " + ^ +os_utilities.c:66:8: warning: implicit declaration of function 'memalign' is invalid in C99 + [-Wimplicit-function-declaration] + ptr = _aligned_malloc(size, alignment); + ^ +os_utilities.c:59:43: note: expanded from macro '_aligned_malloc' +#define _aligned_malloc(size, alignment) memalign(alignment, size) + ^ +os_utilities.c:66:6: warning: incompatible integer to pointer conversion assigning to 'PVOID' (aka 'void *') from + 'int' [-Wint-conversion] + ptr = _aligned_malloc(size, alignment); + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + --- src/cm_rt_linux.h.orig 2016-09-07 23:51:38 UTC +++ src/cm_rt_linux.h @@ -48,7 +48,6 @@ extern "C" {