Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 May 2019 01:14:15 +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: r501354 - head/net/gupnp-igd
Message-ID:  <201905120114.x4C1EFHY026609@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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