svn commit: r506213 - head/databases/libdbi-drivers

Piotr Kubaj pkubaj at FreeBSD.org
Mon Jul 8 12:29:43 UTC 2019


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

Log:
  databases/libdbi-drivers: 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/databases/libdbi-drivers/Makefile

Modified: head/databases/libdbi-drivers/Makefile
==============================================================================
--- head/databases/libdbi-drivers/Makefile	Mon Jul  8 12:21:42 2019	(r506212)
+++ head/databases/libdbi-drivers/Makefile	Mon Jul  8 12:29:42 2019	(r506213)
@@ -15,7 +15,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libdbi.so:databases/libdbi
 
-USES=		gmake libtool
+USES=		compiler:c11 gmake libtool
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-static \
 		--with-dbi-incdir=${LOCALBASE}/include \


More information about the svn-ports-all mailing list