From c931fa79fd79d21c01acfb32c38930b3f61d9f96 Mon Sep 17 00:00:00 2001 From: Anthony Iliopoulos Date: Sat, 24 Apr 2021 00:13:56 +0200 Subject: [PATCH] python3: remove obsolete --with-threads configure option Thread-less builds became unsupported in upstream commit a6a4dc816d68 ("bpo-31370: Remove support for threads-less builds (#3385)"), and as such this config option has been unrecognized since python3.7. --- srcpkgs/python3-tkinter/template | 2 +- srcpkgs/python3/template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template index d52b5cdb66ec..bb0f962c486d 100644 --- a/srcpkgs/python3-tkinter/template +++ b/srcpkgs/python3-tkinter/template @@ -47,7 +47,7 @@ do_configure() { fi ./configure ${configure_args} ${_args} \ --enable-shared --enable-ipv6 --enable-loadable-sqlite-extensions \ - --with-threads --with-computed-gotos --with-dbmliborder=gdbm:ndbm \ + --with-computed-gotos --with-dbmliborder=gdbm:ndbm \ --with-system-expat --with-system-ffi --without-ensurepip } diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template index 223a28dc1288..96a4a9dfd7e2 100644 --- a/srcpkgs/python3/template +++ b/srcpkgs/python3/template @@ -48,7 +48,7 @@ do_configure() { fi ./configure ${configure_args} ${_args} \ --enable-shared --enable-ipv6 --enable-loadable-sqlite-extensions \ - --with-threads --with-computed-gotos --with-dbmliborder=gdbm:ndbm \ + --with-computed-gotos --with-dbmliborder=gdbm:ndbm \ --with-system-expat --with-system-ffi --without-ensurepip }