svn commit: r554040 - head/databases/py-sqlite3

Piotr Kubaj pkubaj at FreeBSD.org
Wed Nov 4 00:15:22 UTC 2020


Author: pkubaj
Date: Wed Nov  4 00:15:21 2020
New Revision: 554040
URL: https://svnweb.freebsd.org/changeset/ports/554040

Log:
  databases/py-sqlite3: fix build on GCC architectures
  
  cc -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -pipe -fstack-protector-strong -Wl,-rpath=/usr/local/lib/gcc9 -fno-strict-aliasing -O2 -pipe -fstack-protector-strong -fno-strict-aliasing -fPIC -DMODULE_NAME="sqlite3" -I/usr/local/include -IModules/_sqlite -I/usr/local/include/python3.9 -c _sqlite/cache.c -o build/temp.freebsd-12.2-RELEASE-powerpc-3.9/_sqlite/cache.o
  cc1: error: unrecognized command line option "-Wno-unused-result"

Modified:
  head/databases/py-sqlite3/Makefile

Modified: head/databases/py-sqlite3/Makefile
==============================================================================
--- head/databases/py-sqlite3/Makefile	Tue Nov  3 23:10:55 2020	(r554039)
+++ head/databases/py-sqlite3/Makefile	Wed Nov  4 00:15:21 2020	(r554040)
@@ -20,7 +20,7 @@ LIB_DEPENDS=	libsqlite3.so:databases/sqlite3
 
 PORTSCOUT=	ignore:1
 
-USES=		python tar:xz
+USES=		compiler:c11 python tar:xz
 USE_PYTHON=	autoplist distutils allflavors
 
 DISTINFO_FILE=	${PORTSDIR}/lang/python${PYTHON_SUFFIX}/distinfo


More information about the svn-ports-all mailing list