From owner-freebsd-gnome@freebsd.org Mon Jun 11 02:15:24 2018 Return-Path: Delivered-To: freebsd-gnome@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 5A51F1010768 for ; Mon, 11 Jun 2018 02:15:24 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id EE15D85D18 for ; Mon, 11 Jun 2018 02:15:23 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mailman.ysv.freebsd.org (Postfix) id A4E011010767; Mon, 11 Jun 2018 02:15:23 +0000 (UTC) Delivered-To: gnome@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 920201010766 for ; Mon, 11 Jun 2018 02:15:23 +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 4455085D15; Mon, 11 Jun 2018 02:15:23 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id 7225524948; Mon, 11 Jun 2018 02:15:22 +0000 (UTC) Date: Mon, 11 Jun 2018 02:15:21 +0000 From: Mark Linimon To: gnome@FreeBSD.org Cc: linimon@FreeBSD.org Subject: [linimon@FreeBSD.org: svn commit: r472163 - head/sysutils/consolekit2] Message-ID: <20180611021512.GE19847@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-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jun 2018 02:15:24 -0000 This should also have been part of the mass commit. I needed to double-check. mcl ----- Forwarded message from Mark Linimon ----- Date: Mon, 11 Jun 2018 02:14:07 +0000 (UTC) From: Mark Linimon To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472163 - head/sysutils/consolekit2 Author: linimon Date: Mon Jun 11 02:14:07 2018 New Revision: 472163 URL: https://svnweb.freebsd.org/changeset/ports/472163 Log: Fix build on architectures which still have gcc as the default compiler. Tested for no harm on amd64. Submitted by: jhibbits Differential Revision: D15685 Modified: head/sysutils/consolekit2/Makefile Modified: head/sysutils/consolekit2/Makefile ============================================================================== --- head/sysutils/consolekit2/Makefile Mon Jun 11 02:08:58 2018 (r472162) +++ head/sysutils/consolekit2/Makefile Mon Jun 11 02:14:07 2018 (r472163) @@ -5,8 +5,8 @@ PORTNAME= consolekit PORTVERSION= 1.2.0 CATEGORIES= sysutils gnome MASTER_SITES= https://github.com/ConsoleKit2/ConsoleKit2/releases/download/${PORTVERSION}/ -DISTNAME= ConsoleKit2-${PORTVERSION} PKGNAMESUFFIX= 2 +DISTNAME= ConsoleKit2-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org COMMENT= Framework for defining and tracking users @@ -19,6 +19,7 @@ LIB_DEPENDS= libdbus-1.so:devel/dbus \ WRKSRC= ${WRKDIR}/ConsoleKit2-${PORTVERSION} USES= gettext gmake libtool localbase pathfix pkgconfig tar:bzip2 +USE_CSTD= gnu99 USE_XORG= x11 USE_GNOME= glib20 libxslt introspection:build GNU_CONFIGURE= yes ----- End forwarded message -----