svn commit: r506212 - head/security/libpreludedb

Piotr Kubaj pkubaj at FreeBSD.org
Mon Jul 8 12:21:44 UTC 2019


Author: pkubaj
Date: Mon Jul  8 12:21:42 2019
New Revision: 506212
URL: https://svnweb.freebsd.org/changeset/ports/506212

Log:
  security/libpreludedb: fix build with GCC-based architectures
  
  Since the switch to MySQL 5.7, C11-aware compiler is required:
  /usr/bin/ld: cannot find -latomic
  
  Approved by:	mentors (implicit approval)

Modified:
  head/security/libpreludedb/Makefile

Modified: head/security/libpreludedb/Makefile
==============================================================================
--- head/security/libpreludedb/Makefile	Mon Jul  8 12:17:04 2019	(r506211)
+++ head/security/libpreludedb/Makefile	Mon Jul  8 12:21:42 2019	(r506212)
@@ -14,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libprelude.so:security/libprelude
 
-USES=		gmake libtool
+USES=		compiler:c11 gmake libtool
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--without-swig \
 		--without-python3


More information about the svn-ports-head mailing list