svn commit: r500653 - head/www/mod_maxminddb

Piotr Kubaj pkubaj at FreeBSD.org
Thu May 2 11:01:27 UTC 2019


Author: pkubaj
Date: Thu May  2 11:01:25 2019
New Revision: 500653
URL: https://svnweb.freebsd.org/changeset/ports/500653

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

Modified:
  head/www/mod_maxminddb/Makefile

Modified: head/www/mod_maxminddb/Makefile
==============================================================================
--- head/www/mod_maxminddb/Makefile	Thu May  2 11:00:10 2019	(r500652)
+++ head/www/mod_maxminddb/Makefile	Thu May  2 11:01:25 2019	(r500653)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 LIB_DEPENDS=	libmaxminddb.so:net/libmaxminddb
 
-USES=		apache:2.4+ autoreconf gmake localbase
+USES=		apache:2.4+ autoreconf compiler:c11 gmake localbase
 GNU_CONFIGURE=	yes
 USE_GITHUB=	yes
 GH_ACCOUNT=	maxmind


More information about the svn-ports-all mailing list