From owner-svn-ports-all@freebsd.org Fri Jan 5 03:41:40 2018 Return-Path: Delivered-To: svn-ports-all@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 87CCCEAD032; Fri, 5 Jan 2018 03:41:40 +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 mx1.freebsd.org (Postfix) with ESMTPS id 4F4A672851; Fri, 5 Jan 2018 03:41:40 +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 w053fdxf046923; Fri, 5 Jan 2018 03:41:39 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w053fdxl046922; Fri, 5 Jan 2018 03:41:39 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201801050341.w053fdxl046922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 5 Jan 2018 03:41:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458110 - head/graphics/libjxr X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/graphics/libjxr X-SVN-Commit-Revision: 458110 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jan 2018 03:41:40 -0000 Author: jbeich Date: Fri Jan 5 03:41:39 2018 New Revision: 458110 URL: https://svnweb.freebsd.org/changeset/ports/458110 Log: graphics/libjxr: lift BROKEN_aarch64 per FreeBSD 11.0 EOL Here's how the error message actually looked like: cc -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o libjpegxr.so.1 -Wl,-soname,libjpegxr.so.1 `NM='nm' NMFLAGS='' lorder encode.So segenc.So strenc.So strFwdTransform.So strPredQuantEnc.So decode.So postprocess.So segdec.So strdec.So strInvTransform.So strPredQuantDec.So JXRTranscode.So adapthuff.So image.So strcodec.So strPredQuant.So strTransform.So perfTimerANSI.So | tsort -q` strenc.So: In function `StrIOEncInit': /wrkdirs/usr/ports/graphics/libjxr/work/jxrlib-1.1/image/encode/strenc.c:(.text+0xf18): warning: warning: tmpnam() possibly used unsafely; consider using mkstemp() cc: error: linker command failed with exit code 1 (use -v to see invocation) Noticed -Wl,--fatal-warnings? After tmpnam() warning dissapeared, so did the error. Reported by: http://thunderx1.nyi.freebsd.org/data/110arm64-default/438755/logs/errors/jxrlib-1.1.log Pointy hat to: linimon (generic excerpt) Tested on: 11.1 (clang 4.0) and 12.0 (clang 6.0) Modified: head/graphics/libjxr/Makefile (contents, props changed) Modified: head/graphics/libjxr/Makefile ============================================================================== --- head/graphics/libjxr/Makefile Fri Jan 5 03:39:56 2018 (r458109) +++ head/graphics/libjxr/Makefile Fri Jan 5 03:41:39 2018 (r458110) @@ -12,7 +12,6 @@ COMMENT= Library for JPEG XR, a.k.a. Windows MediaTM P LICENSE= BSD2CLAUSE -BROKEN_aarch64= fails to link: cc: linker command failed with exit code 1 (use -v to see invocation) BROKEN_mips= fails to compile: cc1: unrecognized command line option "-Wno-extra-tokens" BROKEN_mips64= fails to compile: cc1: unrecognized command line option "-Wno-extra-tokens" BROKEN_powerpc64= fails to compile: cc1: unrecognized command line option "-Wno-extra-tokens"