svn commit: r505901 - head/databases/py-MySQLdb

Piotr Kubaj pkubaj at FreeBSD.org
Fri Jul 5 15:03:48 UTC 2019


Author: pkubaj
Date: Fri Jul  5 15:03:47 2019
New Revision: 505901
URL: https://svnweb.freebsd.org/changeset/ports/505901

Log:
  databases/py-MySQLdb: fix build with GCC-based architectures
  
  Add USES=compiler:c11:
  /usr/bin/ld: cannot find -latomic
  
  Approved by:	mentors (implicit approval)

Modified:
  head/databases/py-MySQLdb/Makefile

Modified: head/databases/py-MySQLdb/Makefile
==============================================================================
--- head/databases/py-MySQLdb/Makefile	Fri Jul  5 14:45:19 2019	(r505900)
+++ head/databases/py-MySQLdb/Makefile	Fri Jul  5 15:03:47 2019	(r505901)
@@ -14,7 +14,7 @@ COMMENT=	Access a MySQL database through Python
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/GPL-2.0
 
-USES=		mysql python:2.7
+USES=		compiler:c11 mysql python:2.7
 USE_PYTHON=	autoplist distutils
 USE_GITHUB=	yes
 GH_ACCOUNT=	farcepest


More information about the svn-ports-head mailing list