Control: tags -1 + patch
[Stefano Rivera]
> Presumably resolved in 2.0.0 in NEW, that doesn't use autoconf any more.
Perhaps, but as NEW processing these days take a long time, as a user of
the library I would prefer a fix for 1.2.14-1 in the mean time.
The easiest fix seem to be to bypass the c++ standard detector which
fail in configure.ac, causing the problematic test for C++17, while both
C++11 and C++14 would work, by adding --with-cxx-standard=14 like this:
--- rules.orig 2021-12-04 07:42:25.578757615 +0100
+++ rules 2021-12-04 07:37:18.662074573 +0100
@@ -13,7 +13,8 @@
PYTHON3=$(shell py3versions -vr)
ALLPY=$(PYTHON3)
-CONFIGURE_ARGS = --with-libiconv
--with-boost-libdir=/usr/lib/$(DEB_HOST_MULTIARCH)
+CONFIGURE_ARGS = --with-libiconv
--with-boost-libdir=/usr/lib/$(DEB_HOST_MULTIARCH) \
+ --with-cxx-standard=14
%:
dh $@ --with python3
It would also help a lot if the next upload is a source only upload.
--
Happy hacking
Petter Reinholdtsen