From owner-freebsd-ports@freebsd.org Thu May 17 11:21:50 2018 Return-Path: Delivered-To: freebsd-ports@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 74B4AEEA424 for ; Thu, 17 May 2018 11:21:50 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 162A97A904 for ; Thu, 17 May 2018 11:21:50 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C757AEEA423; Thu, 17 May 2018 11:21:49 +0000 (UTC) Delivered-To: ports@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 B4DD1EEA422 for ; Thu, 17 May 2018 11:21:49 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D25B7A903; Thu, 17 May 2018 11:21:49 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 5F67CEA33; Thu, 17 May 2018 11:21:49 +0000 (UTC) From: Jan Beich To: Rainer Hurling Cc: Subject: Re: www/firefox-i18n: Install problems on 12.0-CURRENT References: <2ca3c01e-b23b-6cb2-0e65-591774b15b11@gwdg.de> Date: Thu, 17 May 2018 13:21:45 +0200 In-Reply-To: <2ca3c01e-b23b-6cb2-0e65-591774b15b11@gwdg.de> (Rainer Hurling's message of "Thu, 17 May 2018 10:56:47 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2018 11:21:50 -0000 Rainer Hurling writes: > For some time now (Firefox 60.x beta versions and on), I get the > following error, if I try to install www/firefox-i18n on 12.0-CURRENT > amd64: Can you reproduce with firefox binary built by FreeBSD package cluster? $ pkg delete -f firefox $ pkg install firefox $ make install -C/usr/ports/www/firefox-i18n > #make > make: "/usr/ports/Mk/Uses/gecko.mk" line 48: warning: > "/usr/local/bin/firefox --version 2>/dev/null" returned non-zero > status Probably because "firefox --version" crashes. It would be surprising if firefox works fine otherwise. > ===> firefox-i18n-60.0.1 cannot install: firefox versions mismatch: > firefox- > is installed and wanted version is firefox-60. > *** Error code 1 > Stop. > make: stopped in /usr/ports/www/firefox-i18n > > > This happens on three boxes. Any hints are really appreciated. > Thanks in advance. Try to get a backtrace. If you didn't disable DTRACE or PROFILE the package should have non-debug symbols. Alternatively, build firefox itself and all its library dependencies with debug symbols e.g., $ env CFLAGS=-g make clean all install STRIP= WITHOUT=OPTIMIZED_CFLAGS -C /usr/ports/www/firefox $ env CFLAGS=-g make clean all install STRIP= -C /usr/ports/devel/icu ...