From owner-freebsd-desktop@freebsd.org Thu Sep 17 14:07:32 2020 Return-Path: Delivered-To: freebsd-desktop@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 7A9F33E14EB for ; Thu, 17 Sep 2020 14:07:32 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 4Bsf1J267vz42kd for ; Thu, 17 Sep 2020 14:07:32 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mailman.nyi.freebsd.org (Postfix) id 468B83E17D1; Thu, 17 Sep 2020 14:07:32 +0000 (UTC) Delivered-To: desktop@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 465503E1914 for ; Thu, 17 Sep 2020 14:07:32 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [18.222.6.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bsf1H34Dmz42hY; Thu, 17 Sep 2020 14:07:31 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id B80714E3B9; Thu, 17 Sep 2020 14:07:28 +0000 (UTC) Date: Thu, 17 Sep 2020 14:07:27 +0000 From: Mark Linimon To: desktop@FreeBSD.org Cc: linimon@FreeBSD.org, pkubaj@FreeBSD.org Subject: [linimon@FreeBSD.org: svn commit: r548843 - head/devel/desktop-file-utils] Message-ID: <20200917140726.GA1643@lonesome.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-Rspamd-Queue-Id: 4Bsf1H34Dmz42hY X-Spamd-Bar: ++ Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=none (mx1.freebsd.org: domain of linimon@lonesome.com has no SPF policy when checking 18.222.6.11) smtp.mailfrom=linimon@lonesome.com X-Spamd-Result: default: False [2.44 / 15.00]; RCVD_TLS_ALL(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; FREEFALL_USER(0.00)[linimon]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; ARC_NA(0.00)[]; AUTH_NA(1.00)[]; DMARC_NA(0.00)[lonesome.com]; NEURAL_SPAM_MEDIUM(0.46)[0.456]; NEURAL_SPAM_SHORT(0.63)[0.634]; NEURAL_SPAM_LONG(0.55)[0.550]; R_SPF_NA(0.00)[no SPF record]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:16509, ipnet:18.220.0.0/14, country:US]; RCVD_COUNT_TWO(0.00)[2]; MAILMAN_DEST(0.00)[desktop]; RCVD_IN_DNSWL_LOW(-0.10)[18.222.6.11:from] X-BeenThere: freebsd-desktop@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: Using and improving FreeBSD on the desktop List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Sep 2020 14:07:32 -0000 FYI mcl ----- Forwarded message from Mark Linimon ----- Date: Thu, 17 Sep 2020 14:06:33 +0000 (UTC) From: Mark Linimon To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548843 - head/devel/desktop-file-utils Author: linimon Date: Thu Sep 17 14:06:32 2020 New Revision: 548843 URL: https://svnweb.freebsd.org/changeset/ports/548843 Log: Add compiler:c11 to USES to fix build on GCC-based systems: cc1: error: unrecognized command line option "-std=gnu11" Approved by: portmgr (tier-2 blanket) Modified: head/devel/desktop-file-utils/Makefile Modified: head/devel/desktop-file-utils/Makefile ============================================================================== --- head/devel/desktop-file-utils/Makefile Thu Sep 17 12:50:03 2020 (r548842) +++ head/devel/desktop-file-utils/Makefile Thu Sep 17 14:06:32 2020 (r548843) @@ -12,7 +12,7 @@ COMMENT= Couple of command line utilities for working LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= gettext meson gnome pkgconfig tar:xz +USES= compiler:c11 gettext meson gnome pkgconfig tar:xz USE_GNOME= glib20 PKGINSTALL= ${WRKDIR}/pkg-install ----- End forwarded message -----