From owner-freebsd-gnome@freebsd.org Tue Oct 1 20:55:11 2019 Return-Path: Delivered-To: freebsd-gnome@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 9560AF8607 for ; Tue, 1 Oct 2019 20:55:11 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 46jWk72ZgMz4PR0 for ; Tue, 1 Oct 2019 20:55:11 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mailman.nyi.freebsd.org (Postfix) id 56C63F8606; Tue, 1 Oct 2019 20:55:11 +0000 (UTC) Delivered-To: gnome@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 568F5F8604 for ; Tue, 1 Oct 2019 20:55:11 +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 46jWk65gX7z4PQy; Tue, 1 Oct 2019 20:55:10 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id B95182A7AC; Tue, 1 Oct 2019 20:55:08 +0000 (UTC) Date: Tue, 1 Oct 2019 20:55:06 +0000 From: Mark Linimon To: gnome@FreeBSD.org Cc: linimon@FreeBSD.org, pkubaj@FreeBSD.org Subject: [linimon@FreeBSD.org: svn commit: r513530 - head/www/libwpe] Message-ID: <20191001205505.GA20688@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: 46jWk65gX7z4PQy 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 [-1.45 / 15.00]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; NEURAL_HAM_MEDIUM(-0.90)[-0.902,0]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-0.99)[-0.985,0]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[lonesome.com]; AUTH_NA(1.00)[]; IP_SCORE(-0.26)[ip: (0.03), ipnet: 18.220.0.0/14(0.13), asn: 16509(-1.40), country: US(-0.05)]; RCVD_IN_DNSWL_MED(-0.20)[11.6.222.18.list.dnswl.org : 127.0.5.2]; R_SPF_NA(0.00)[]; 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]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Oct 2019 20:55:11 -0000 FYI. I took the liberty of making this change without filing a PR since it is a brand-new port. mcl ----- Forwarded message from Mark Linimon ----- Date: Tue, 1 Oct 2019 20:53:26 +0000 (UTC) From: Mark Linimon To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513530 - head/www/libwpe Author: linimon Date: Tue Oct 1 20:53:26 2019 New Revision: 513530 URL: https://svnweb.freebsd.org/changeset/ports/513530 Log: Fix build on GCC-based systems: /wrkdirs/usr/ports/www/libwpe/work/libwpe-1.4.0/src/pasteboard-generic.cpp:35: error: expected nested-name-specifier before 'Pasteboard' Approved by: portmgr (tier-2 blanket) Modified: head/www/libwpe/Makefile Modified: head/www/libwpe/Makefile ============================================================================== --- head/www/libwpe/Makefile Tue Oct 1 20:22:40 2019 (r513529) +++ head/www/libwpe/Makefile Tue Oct 1 20:53:26 2019 (r513530) @@ -12,7 +12,8 @@ LICENSE= BSD2CLAUSE LIB_DEPENDS= libxkbcommon.so:x11/libxkbcommon -USES= cmake pkgconfig localbase:ldflags gl tar:xz +USES= cmake compiler:c11 gl localbase:ldflags pkgconfig \ + tar:xz USE_GL= egl USE_LDCONFIG= yes ----- End forwarded message -----