svn commit: r508320 - head/devel/libosinfo

Piotr Kubaj pkubaj at FreeBSD.org
Wed Aug 7 16:37:22 UTC 2019


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


More information about the svn-ports-all mailing list