From owner-svn-ports-all@freebsd.org Tue Oct 9 18:29:04 2018 Return-Path: Delivered-To: svn-ports-all@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 0778310B77E8; Tue, 9 Oct 2018 18:29:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AF5D276410; Tue, 9 Oct 2018 18:29:03 +0000 (UTC) (envelope-from swills@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 A63C115DAB; Tue, 9 Oct 2018 18:29:03 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w99IT3Ek040388; Tue, 9 Oct 2018 18:29:03 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w99IT39n040386; Tue, 9 Oct 2018 18:29:03 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201810091829.w99IT39n040386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 9 Oct 2018 18:29:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481649 - in head/sysutils/fusefs-libs3: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/sysutils/fusefs-libs3: . files X-SVN-Commit-Revision: 481649 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.27 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: Tue, 09 Oct 2018 18:29:04 -0000 Author: swills Date: Tue Oct 9 18:29:02 2018 New Revision: 481649 URL: https://svnweb.freebsd.org/changeset/ports/481649 Log: sysutils/fusefs-libs3: fix build with base GCC PR: 231700 Submitted by: Piotr Kubaj Approved by: maintainer timeout (se, >2 weeks) Added: head/sysutils/fusefs-libs3/files/ head/sysutils/fusefs-libs3/files/patch-meson.build (contents, props changed) Modified: head/sysutils/fusefs-libs3/Makefile (contents, props changed) Modified: head/sysutils/fusefs-libs3/Makefile ============================================================================== --- head/sysutils/fusefs-libs3/Makefile Tue Oct 9 18:17:37 2018 (r481648) +++ head/sysutils/fusefs-libs3/Makefile Tue Oct 9 18:29:02 2018 (r481649) @@ -12,10 +12,6 @@ COMMENT= FUSE library version 3 for filesystems implem LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.LIB -BROKEN_mips= fails to compile: unrecognized command line option "-Wno-unused-result" -BROKEN_mips64= fails to compile: unrecognized command line option "-Wno-unused-result" -BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-unused-result" - USES= meson USE_LDCONFIG= yes Added: head/sysutils/fusefs-libs3/files/patch-meson.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-libs3/files/patch-meson.build Tue Oct 9 18:29:02 2018 (r481649) @@ -0,0 +1,10 @@ +--- meson.build.orig 2018-09-24 22:55:28 UTC ++++ meson.build +@@ -80,7 +80,6 @@ int main(void) { + }''' + if not cc.compiles(code, args: [ '-O0', '-Werror=unused-result' ]) + message('Compiler warns about unused result even when casting to void') +- add_global_arguments('-Wno-unused-result', language: 'c') + endif + + # '.' will refer to current build directory, which contains config.h