From owner-svn-ports-head@freebsd.org Mon Jan 25 00:41:32 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D9F7A45C0E; Mon, 25 Jan 2016 00:41:32 +0000 (UTC) (envelope-from novel@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 mx1.freebsd.org (Postfix) with ESMTPS id F4018C7A; Mon, 25 Jan 2016 00:41:31 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0P0fVv1072123; Mon, 25 Jan 2016 00:41:31 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0P0fVo3072122; Mon, 25 Jan 2016 00:41:31 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201601250041.u0P0fVo3072122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Mon, 25 Jan 2016 00:41:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407188 - head/devel/libosinfo/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jan 2016 00:41:32 -0000 Author: novel Date: Mon Jan 25 00:41:30 2016 New Revision: 407188 URL: https://svnweb.freebsd.org/changeset/ports/407188 Log: devel/libosinfo: fix build on 9.x gcc on 9.x does not seem to like typedef redefinition, so drop that. Added: head/devel/libosinfo/files/ head/devel/libosinfo/files/patch-osinfo_osinfo__media.h (contents, props changed) Added: head/devel/libosinfo/files/patch-osinfo_osinfo__media.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libosinfo/files/patch-osinfo_osinfo__media.h Mon Jan 25 00:41:30 2016 (r407188) @@ -0,0 +1,11 @@ +--- osinfo/osinfo_media.h.orig 2016-01-24 23:58:45 UTC ++++ osinfo/osinfo_media.h +@@ -65,8 +65,6 @@ typedef enum { + #define OSINFO_IS_MEDIA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), OSINFO_TYPE_MEDIA)) + #define OSINFO_MEDIA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), OSINFO_TYPE_MEDIA, OsinfoMediaClass)) + +-typedef struct _OsinfoMedia OsinfoMedia; +- + typedef struct _OsinfoMediaClass OsinfoMediaClass; + + typedef struct _OsinfoMediaPrivate OsinfoMediaPrivate;