svn commit: r506349 - head/databases/py-oursql

Piotr Kubaj pkubaj at FreeBSD.org
Wed Jul 10 12:17:34 UTC 2019


Author: pkubaj
Date: Wed Jul 10 12:17:33 2019
New Revision: 506349
URL: https://svnweb.freebsd.org/changeset/ports/506349

Log:
  databases/py-oursql: fix build on GCC architectures
  
  Base GCC can't link against MySQL 5.7 library:
  /usr/bin/ld: cannot find -latomic
  
  Add USES=compiler:c11.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/databases/py-oursql/Makefile

Modified: head/databases/py-oursql/Makefile
==============================================================================
--- head/databases/py-oursql/Makefile	Wed Jul 10 11:30:03 2019	(r506348)
+++ head/databases/py-oursql/Makefile	Wed Jul 10 12:17:33 2019	(r506349)
@@ -12,7 +12,7 @@ COMMENT=	MySQL bindings for python
 
 LICENSE=	BSD2CLAUSE
 
-USES=		mysql python:2.7
+USES=		compiler:c11 mysql python:2.7
 USE_PYTHON=	autoplist distutils
 
 post-install:


More information about the svn-ports-all mailing list