Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 May 2019 20:49:25 +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: r500614 - head/devel/php-maxminddb
Message-ID:  <201905012049.x41KnPtS043438@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed May  1 20:49:25 2019
New Revision: 500614
URL: https://svnweb.freebsd.org/changeset/ports/500614

Log:
  php-maxminddb: fix build with GCC-based architectures
  
  Add USES=compiler:c11 to fix build:
  /wrkdirs/usr/ports/devel/php-maxminddb/work-php71/MaxMind-DB-Reader-php-1.1.0/ext/maxminddb.c:430: error: 'MMDB_entry_data_s' has no member named 'uint128'
  /wrkdirs/usr/ports/devel/php-maxminddb/work-php71/MaxMind-DB-Reader-php-1.1.0/ext/maxminddb.c:431: error: 'MMDB_entry_data_s' has no member named 'uint128'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/devel/php-maxminddb/Makefile

Modified: head/devel/php-maxminddb/Makefile
==============================================================================
--- head/devel/php-maxminddb/Makefile	Wed May  1 20:45:18 2019	(r500613)
+++ head/devel/php-maxminddb/Makefile	Wed May  1 20:49:25 2019	(r500614)
@@ -22,6 +22,6 @@ GH_PROJECT=	MaxMind-DB-Reader-php
 
 WRKSRC_SUBDIR=	ext
 
-USES=		php:ext localbase:ldflags
+USES=		compiler:c11 php:ext localbase:ldflags
 
 .include <bsd.port.mk>



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