svn commit: r506214 - head/net-mgmt/super_mediator

Piotr Kubaj pkubaj at FreeBSD.org
Mon Jul 8 12:33:04 UTC 2019


Author: pkubaj
Date: Mon Jul  8 12:33:03 2019
New Revision: 506214
URL: https://svnweb.freebsd.org/changeset/ports/506214

Log:
  net-mgmt/super_mediator: 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/net-mgmt/super_mediator/Makefile

Modified: head/net-mgmt/super_mediator/Makefile
==============================================================================
--- head/net-mgmt/super_mediator/Makefile	Mon Jul  8 12:29:42 2019	(r506213)
+++ head/net-mgmt/super_mediator/Makefile	Mon Jul  8 12:33:03 2019	(r506214)
@@ -18,7 +18,7 @@ LIB_DEPENDS=	libfixbuf.so:net/libfixbuf \
 
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip
-USES=		libtool pathfix perl5 pkgconfig ssl
+USES=		compiler:c11 libtool pathfix perl5 pkgconfig ssl
 USE_GNOME=	glib20
 
 PLIST_SUB+=	PORTVERSION="${PORTVERSION}"


More information about the svn-ports-head mailing list