svn commit: r501524 - head/dns/getdns

Piotr Kubaj pkubaj at FreeBSD.org
Mon May 13 07:37:39 UTC 2019


Author: pkubaj
Date: Mon May 13 07:37:38 2019
New Revision: 501524
URL: https://svnweb.freebsd.org/changeset/ports/501524

Log:
  dns/getdns: fix build with GCC-based architectures
  
  Add USES=compiler:c11 to fix build:
  ./tls.h:45: error: redefinition of typedef 'sha256_pin_t'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/dns/getdns/Makefile

Modified: head/dns/getdns/Makefile
==============================================================================
--- head/dns/getdns/Makefile	Mon May 13 07:36:38 2019	(r501523)
+++ head/dns/getdns/Makefile	Mon May 13 07:37:38 2019	(r501524)
@@ -20,7 +20,7 @@ LIB_DEPENDS=	libexpat.so:textproc/expat2 \
 		libldns.so:dns/ldns \
 		libunbound.so:dns/unbound
 
-USES=		libtool pathfix ssl
+USES=		compiler:c11 libtool pathfix ssl
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-libidn=${LOCALBASE} --docdir=${DOCSDIR} \


More information about the svn-ports-all mailing list