From owner-svn-ports-all@freebsd.org Thu Apr 30 19:33:39 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6C2B12C6B95; Thu, 30 Apr 2020 19:33:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49CltC1Kqgz3y0F; Thu, 30 Apr 2020 19:33:39 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 28F3923FAA; Thu, 30 Apr 2020 19:33:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03UJXdwa031726; Thu, 30 Apr 2020 19:33:39 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03UJXd86031725; Thu, 30 Apr 2020 19:33:39 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202004301933.03UJXd86031725@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 30 Apr 2020 19:33:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533471 - head/net-p2p/libtorrent-rasterbar X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/net-p2p/libtorrent-rasterbar X-SVN-Commit-Revision: 533471 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.29 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: Thu, 30 Apr 2020 19:33:39 -0000 Author: yuri Date: Thu Apr 30 19:33:38 2020 New Revision: 533471 URL: https://svnweb.freebsd.org/changeset/ports/533471 Log: net-p2p/libtorrent-rasterbar: Update 13-CURRENT workaround As compilation now works using -CURRENT there's no need to force llvm90 on any version. PR: 246045 Submitted by: daniel.engberg.lists@pyret.net Modified: head/net-p2p/libtorrent-rasterbar/Makefile Modified: head/net-p2p/libtorrent-rasterbar/Makefile ============================================================================== --- head/net-p2p/libtorrent-rasterbar/Makefile Thu Apr 30 19:33:24 2020 (r533470) +++ head/net-p2p/libtorrent-rasterbar/Makefile Thu Apr 30 19:33:38 2020 (r533471) @@ -41,7 +41,7 @@ LOGGING_CMAKE_BOOL= logging .include -.if ${ARCH} != powerpc && ${ARCH} != powerpc64 +.if !${ARCH:Mpowerpc*} && ${OPSYS}_${OSREL:R} == FreeBSD_13 && ${OSVERSION} < 1300093 # workaroud for the clang-10 compiler failure: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244830 # on powerpc, llvm 9 crashes with segfault, while 10 works https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243958 # on powerpc64 elfv1, clang doesn't work at all (no support for elfv1), on elfv2 clang from base works ok