diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-08 12:35:26 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-08 12:35:26 +0000 |
commit | 08cdb13482cc97e2658b33d42d9638ad38c01a65 (patch) | |
tree | 59f1676bc18ea5e93b71387057614e5a4f2746a9 | |
parent | net-mgmt/super_mediator: fix build with GCC-based architectures (diff) |
dns/opendnssec: 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-- | dns/opendnssec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/opendnssec/Makefile b/dns/opendnssec/Makefile index a6733ffb5e99..80d6b503cbf3 100644 --- a/dns/opendnssec/Makefile +++ b/dns/opendnssec/Makefile @@ -18,7 +18,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir="${PREFIX}/var" USE_RC_SUBR= opendnssec USE_GNOME= libxml2 -USES= perl5 ssl +USES= compiler:c11 perl5 ssl USE_LDCONFIG= yes CONFLICTS= opendnssec-1.[0-3]* opendnssec2-[0-9]* |