From owner-svn-ports-head@freebsd.org Tue Oct 11 19:20:40 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 665DAC0D834; Tue, 11 Oct 2016 19:20:40 +0000 (UTC) (envelope-from riggs@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 mx1.freebsd.org (Postfix) with ESMTPS id 332081BA; Tue, 11 Oct 2016 19:20:40 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9BJKd9w079240; Tue, 11 Oct 2016 19:20:39 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9BJKd94079239; Tue, 11 Oct 2016 19:20:39 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201610111920.u9BJKd94079239@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Tue, 11 Oct 2016 19:20:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423787 - head/multimedia/mkvtoolnix/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Tue, 11 Oct 2016 19:20:40 -0000 Author: riggs Date: Tue Oct 11 19:20:39 2016 New Revision: 423787 URL: https://svnweb.freebsd.org/changeset/ports/423787 Log: Fix build on archs where sizeof(size_t) != sizeof(uint64_t) Added: head/multimedia/mkvtoolnix/files/patch-src_input_r__qtmp4.cpp (contents, props changed) Added: head/multimedia/mkvtoolnix/files/patch-src_input_r__qtmp4.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mkvtoolnix/files/patch-src_input_r__qtmp4.cpp Tue Oct 11 19:20:39 2016 (r423787) @@ -0,0 +1,11 @@ +--- src/input/r_qtmp4.cpp.orig 2016-09-11 12:16:51 UTC ++++ src/input/r_qtmp4.cpp +@@ -107,7 +107,7 @@ read_qtmp4_atom(mm_io_c *read_from, + if (exit_on_error) + mxerror(boost::format(Y("Quicktime/MP4 reader: Invalid chunk size %1% at %2%.\n")) % a.size % a.pos); + else +- throw mtx::atom_chunk_size_x{a.size, a.pos}; ++ throw mtx::atom_chunk_size_x{static_cast(a.size), static_cast(a.pos)}; + } + + return a;