diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-05 15:03:47 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2019-07-05 15:03:47 +0000 |
commit | 49ddb8780ff200179e8c371b7f715541d199ed1d (patch) | |
tree | 102e50346d250ec30a63b4a6945899a11fb7e2a3 /databases/py-MySQLdb | |
parent | 35203e771d9f1f9310a446dd942ae07715c3658c (diff) |
databases/py-MySQLdb: fix build with GCC-based architectures
Add USES=compiler:c11:
/usr/bin/ld: cannot find -latomic
Approved by: mentors (implicit approval)
Notes
Notes:
svn path=/head/; revision=505901
Diffstat (limited to 'databases/py-MySQLdb')
-rw-r--r-- | databases/py-MySQLdb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/py-MySQLdb/Makefile b/databases/py-MySQLdb/Makefile index a2a3bf25be6d..17900e943aa0 100644 --- a/databases/py-MySQLdb/Makefile +++ b/databases/py-MySQLdb/Makefile @@ -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 |