diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-08 12:21:42 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-08 12:21:42 +0000 |
commit | 9c482daea5f02ccab4f76bc76360a11119f13d72 (patch) | |
tree | 77def4d8a5536940a7b7a002f8338ade4b7d9535 | |
parent | databases/py-mysqlclient: fix build with GCC-based architectures (diff) |
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)
-rw-r--r-- | security/libpreludedb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/libpreludedb/Makefile b/security/libpreludedb/Makefile index c4ced1210fd0..30352ea6e681 100644 --- a/security/libpreludedb/Makefile +++ b/security/libpreludedb/Makefile @@ -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 |