svn commit: r506865 - head/security/pam-mysql

Piotr Kubaj pkubaj at FreeBSD.org
Thu Jul 18 17:48:01 UTC 2019


Author: pkubaj
Date: Thu Jul 18 17:48:00 2019
New Revision: 506865
URL: https://svnweb.freebsd.org/changeset/ports/506865

Log:
  security/pam-mysql: fix build on GCC architectures
  
  This port requires -latomic since upgrade to MySQL 5.7:
  /usr/bin/ld: cannot find -latomic
  
  Approved by:	mentors (implicit approval)

Modified:
  head/security/pam-mysql/Makefile

Modified: head/security/pam-mysql/Makefile
==============================================================================
--- head/security/pam-mysql/Makefile	Thu Jul 18 17:47:09 2019	(r506864)
+++ head/security/pam-mysql/Makefile	Thu Jul 18 17:48:00 2019	(r506865)
@@ -14,7 +14,7 @@ COMMENT=	Pam module for authenticating with MySQL
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		libtool:keepla
+USES=		compiler:c11 libtool:keepla
 USE_MYSQL=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-mysql=${LOCALBASE} \


More information about the svn-ports-all mailing list