diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-08 12:33:03 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-08 12:33:03 +0000 |
commit | ffc019066fa88c8d92e36753d9c8ba5eb755aeb8 (patch) | |
tree | 0fef1b95837c56a3b1d61346e1ba8497e48024ed | |
parent | databases/libdbi-drivers: fix build with GCC-based architectures (diff) |
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)
-rw-r--r-- | net-mgmt/super_mediator/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-mgmt/super_mediator/Makefile b/net-mgmt/super_mediator/Makefile index ab640fe7fde4..ab5767825a64 100644 --- a/net-mgmt/super_mediator/Makefile +++ b/net-mgmt/super_mediator/Makefile @@ -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}" |