Date: Mon, 8 Jul 2019 12:21:43 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506212 - head/security/libpreludedb Message-ID: <201907081221.x68CLhVK023058@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Mon Jul 8 12:21:42 2019 New Revision: 506212 URL: https://svnweb.freebsd.org/changeset/ports/506212 Log: 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) Modified: head/security/libpreludedb/Makefile Modified: head/security/libpreludedb/Makefile ============================================================================== --- head/security/libpreludedb/Makefile Mon Jul 8 12:17:04 2019 (r506211) +++ head/security/libpreludedb/Makefile Mon Jul 8 12:21:42 2019 (r506212) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907081221.x68CLhVK023058>