svn commit: r506348 - head/net-mgmt/zabbix4-server

Piotr Kubaj pkubaj at FreeBSD.org
Wed Jul 10 11:30:04 UTC 2019


Author: pkubaj
Date: Wed Jul 10 11:30:03 2019
New Revision: 506348
URL: https://svnweb.freebsd.org/changeset/ports/506348

Log:
  net-mgmt/zabbix4-server: fix build on GCC architectures
  
  Base GCC is unable to link to MySQL 5.7:
  configure: error: Not found mysqlclient library
  
  Add USES=compiler:c11 when using MYSQL option.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/net-mgmt/zabbix4-server/Makefile

Modified: head/net-mgmt/zabbix4-server/Makefile
==============================================================================
--- head/net-mgmt/zabbix4-server/Makefile	Wed Jul 10 11:03:22 2019	(r506347)
+++ head/net-mgmt/zabbix4-server/Makefile	Wed Jul 10 11:30:03 2019	(r506348)
@@ -85,7 +85,7 @@ OPTIONS_SINGLE_DB?=	MYSQL PGSQL ORACLE
 OPTIONS_SINGLE_SSL=	OPENSSL GNUTLS
 
 MYSQL_CONFIGURE_WITH=	mysql
-MYSQL_USES+=		mysql
+MYSQL_USES+=		compiler:c11 mysql
 
 PGSQL_CONFIGURE_WITH=	postgresql
 PGSQL_USES+=		pgsql


More information about the svn-ports-head mailing list