From owner-svn-ports-branches@freebsd.org Fri Oct 16 20:40:38 2015 Return-Path: Delivered-To: svn-ports-branches@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 78E08A17E35; Fri, 16 Oct 2015 20:40:38 +0000 (UTC) (envelope-from pawel@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 45001142F; Fri, 16 Oct 2015 20:40:38 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9GKebbt066634; Fri, 16 Oct 2015 20:40:37 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9GKebpP066632; Fri, 16 Oct 2015 20:40:37 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201510162040.t9GKebpP066632@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 16 Oct 2015 20:40:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r399515 - in branches/2015Q4/graphics/rawstudio: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Oct 2015 20:40:38 -0000 Author: pawel Date: Fri Oct 16 20:40:37 2015 New Revision: 399515 URL: https://svnweb.freebsd.org/changeset/ports/399515 Log: MFH: r399513 Add patch fixing segfault at startup PR: 203297 Submitted by: fbsd@opal.com Approved by: maintainer timeout Approved by: ports-secteam (feld) Added: branches/2015Q4/graphics/rawstudio/files/patch-src_rs-batch.c - copied unchanged from r399513, head/graphics/rawstudio/files/patch-src_rs-batch.c Modified: branches/2015Q4/graphics/rawstudio/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/graphics/rawstudio/Makefile ============================================================================== --- branches/2015Q4/graphics/rawstudio/Makefile Fri Oct 16 20:27:16 2015 (r399514) +++ branches/2015Q4/graphics/rawstudio/Makefile Fri Oct 16 20:40:37 2015 (r399515) @@ -3,7 +3,7 @@ PORTNAME= rawstudio PORTVERSION= 2.0 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= graphics MASTER_SITES= http://rawstudio.org/files/release/ Copied: branches/2015Q4/graphics/rawstudio/files/patch-src_rs-batch.c (from r399513, head/graphics/rawstudio/files/patch-src_rs-batch.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/graphics/rawstudio/files/patch-src_rs-batch.c Fri Oct 16 20:40:37 2015 (r399515, copy of r399513, head/graphics/rawstudio/files/patch-src_rs-batch.c) @@ -0,0 +1,11 @@ +--- src/rs-batch.c.orig 2011-04-07 18:05:03 UTC ++++ src/rs-batch.c +@@ -830,7 +830,7 @@ static void + filetype_changed(gpointer active, gpointer user_data) + { + RS_QUEUE *queue = (RS_QUEUE *) user_data; +- GType filetype = GPOINTER_TO_INT(active); ++ GType filetype = (GType)active; + + if (!filetype) + return;