From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Mar 16 02:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1D99AB0 for ; Sun, 16 Mar 2014 02:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 96EAAE6C for ; Sun, 16 Mar 2014 02:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2G201Bv006578 for ; Sun, 16 Mar 2014 02:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2G201ZH006577; Sun, 16 Mar 2014 02:00:01 GMT (envelope-from gnats) Date: Sun, 16 Mar 2014 02:00:01 GMT Message-Id: <201403160200.s2G201ZH006577@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Nikolai Lifanov Subject: Re: ports/186565: games/tome4: segfault at startup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Nikolai Lifanov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Mar 2014 02:00:01 -0000 The following reply was made to PR ports/186565; it has been noted by GNATS. From: Nikolai Lifanov To: bug-followup@FreeBSD.org, m.tsatsenko@gmail.com Cc: Subject: Re: ports/186565: games/tome4: segfault at startup Date: Sat, 15 Mar 2014 21:59:12 -0400 This is a multi-part message in MIME format. --------------060500050109070209060608 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit I was able to reproduce the segfault... Could you try this patch please? Basically, from games/tome4/patch-build__te4core.lua, remove the first section. - Nikolai Lifanov Index: games/tome4/files/patch-build__te4core.lua =================================================================== --- games/tome4/files/patch-build__te4core.lua (revision 348390) +++ games/tome4/files/patch-build__te4core.lua (working copy) @@ -1,14 +1,5 @@ --- ./build/te4core.lua.orig 2014-01-05 19:42:37.000000000 -0500 +++ ./build/te4core.lua 2014-02-06 13:23:22.476164878 -0500 -@@ -109,7 +109,7 @@ - - configuration "bsd" - libdirs {"/usr/local/lib/"} -- links { "SDL2", "SDL2_ttf", "SDL2_image", "png", "openal", "vorbisfile", "GL", "GLU", "m", "pthread" } -+ links { "SDL2", "SDL2_ttf", "SDL2_image", "png", "openal", "vorbisfile", "GL", "GLU", "m" } - defines { [[TENGINE_HOME_PATH='".t-engine"']], 'SELFEXE_BSD' } - - configuration {"Debug"} @@ -159,7 +159,7 @@ files { "../src/luajit2/src/host/minilua.c" } --------------060500050109070209060608 Content-Type: text/plain; charset=us-ascii; name="patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch.txt" Index: games/tome4/files/patch-build__te4core.lua =================================================================== --- games/tome4/files/patch-build__te4core.lua (revision 348390) +++ games/tome4/files/patch-build__te4core.lua (working copy) @@ -1,14 +1,5 @@ --- ./build/te4core.lua.orig 2014-01-05 19:42:37.000000000 -0500 +++ ./build/te4core.lua 2014-02-06 13:23:22.476164878 -0500 -@@ -109,7 +109,7 @@ - - configuration "bsd" - libdirs {"/usr/local/lib/"} -- links { "SDL2", "SDL2_ttf", "SDL2_image", "png", "openal", "vorbisfile", "GL", "GLU", "m", "pthread" } -+ links { "SDL2", "SDL2_ttf", "SDL2_image", "png", "openal", "vorbisfile", "GL", "GLU", "m" } - defines { [[TENGINE_HOME_PATH='".t-engine"']], 'SELFEXE_BSD' } - - configuration {"Debug"} @@ -159,7 +159,7 @@ files { "../src/luajit2/src/host/minilua.c" } --------------060500050109070209060608--