svn commit: r501092 - head/www/varnish-libvmod-maxminddb

Piotr Kubaj pkubaj at FreeBSD.org
Thu May 9 12:51:28 UTC 2019


Author: pkubaj
Date: Thu May  9 12:51:27 2019
New Revision: 501092
URL: https://svnweb.freebsd.org/changeset/ports/501092

Log:
  www/varnish-libvmod-maxminddb: fix build with GCC-based architectures
  
  Add USES=compiler:c11 to fix build:
  /usr/local/include/maxminddb.h:92: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'mmdb_uint128_t'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/www/varnish-libvmod-maxminddb/Makefile

Modified: head/www/varnish-libvmod-maxminddb/Makefile
==============================================================================
--- head/www/varnish-libvmod-maxminddb/Makefile	Thu May  9 12:46:03 2019	(r501091)
+++ head/www/varnish-libvmod-maxminddb/Makefile	Thu May  9 12:51:27 2019	(r501092)
@@ -14,7 +14,8 @@ BUILD_DEPENDS=	rst2man:textproc/py-docutils
 
 LIB_DEPENDS=	libmaxminddb.so:net/libmaxminddb
 
-USES=		autoreconf gmake libtool pkgconfig python:2.7,build varnish
+USES=		autoreconf compiler:c11 gmake libtool pkgconfig \
+		python:2.7,build varnish
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-static
 INSTALL_TARGET=	install-strip


More information about the svn-ports-all mailing list