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.
This commit is contained in:
Anthony Iliopoulos 2021-04-24 00:13:56 +02:00 committed by Érico Nogueira Rolim
parent cbf533b96c
commit 9a9f67304f
2 changed files with 2 additions and 2 deletions

View file

@ -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
}

View file

@ -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
}