Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Aug 2019 16:37:22 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r508320 - head/devel/libosinfo
Message-ID:  <201908071637.x77GbMuO080504@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Aug  7 16:37:22 2019
New Revision: 508320
URL: https://svnweb.freebsd.org/changeset/ports/508320

Log:
  devel/libosinfo: fix build with GCC-based architectures
  
  C11 is now required:
  ../osinfo/osinfo_tree.h:63: error: redefinition of typedef 'OsinfoTree'
  ../osinfo/osinfo_install_script.h:44: error: previous declaration of 'OsinfoTree' was here
  
  Approved by:	mentors (implicit approval)

Modified:
  head/devel/libosinfo/Makefile

Modified: head/devel/libosinfo/Makefile
==============================================================================
--- head/devel/libosinfo/Makefile	Wed Aug  7 16:28:34 2019	(r508319)
+++ head/devel/libosinfo/Makefile	Wed Aug  7 16:37:22 2019	(r508320)
@@ -17,7 +17,7 @@ RUN_DEPENDS:=	${BUILD_DEPENDS} \
 		osinfo-db-import:sysutils/osinfo-db-tools \
 		${LOCALBASE}/share/osinfo/VERSION:misc/osinfo-db
 
-USES=		gettext-tools gmake libtool pathfix pkgconfig
+USES=		compiler:c11 gettext-tools gmake libtool pathfix pkgconfig
 USE_GNOME=	glib20 libxml2 libxslt introspection:build intlhack
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908071637.x77GbMuO080504>