svn commit: r501354 - head/net/gupnp-igd

Piotr Kubaj pkubaj at FreeBSD.org
Sun May 12 01:14:15 UTC 2019


Author: pkubaj
Date: Sun May 12 01:14:14 2019
New Revision: 501354
URL: https://svnweb.freebsd.org/changeset/ports/501354

Log:
  net/gupnp-igd: fix build with GCC-based architectures
  
  Add USES=compiler:c11 to fix build:
  /usr/local/include/gupnp-1.2/libgupnp/gupnp-acl.h:39: error: redefinition of typedef 'GUPnPAcl'
  /usr/local/include/gupnp-1.2/libgupnp/gupnp-acl.h:32: error: previous declaration of 'GUPnPAcl' was here
  /usr/local/include/gupnp-1.2/libgupnp/gupnp-acl.h:53: error: redefinition of typedef 'GUPnPAclInterface'
  /usr/local/include/gupnp-1.2/libgupnp/gupnp-acl.h:32: error: previous declaration of 'GUPnPAclInterface' was here
  
  Approved by:	mentors (implicit approval)

Modified:
  head/net/gupnp-igd/Makefile

Modified: head/net/gupnp-igd/Makefile
==============================================================================
--- head/net/gupnp-igd/Makefile	Sun May 12 01:02:56 2019	(r501353)
+++ head/net/gupnp-igd/Makefile	Sun May 12 01:14:14 2019	(r501354)
@@ -23,7 +23,7 @@ OPTIONS_DEFINE=	PYTHON
 OPTIONS_DEFAULT=PYTHON
 OPTIONS_SUB=	yes
 
-USES=		gmake gnome libtool pathfix pkgconfig tar:xz
+USES=		compiler:c11 gmake gnome libtool pathfix pkgconfig tar:xz
 USE_GNOME=	glib20 introspection:build
 
 CONFIGURE_ARGS=	--enable-introspection=yes


More information about the svn-ports-all mailing list