Your message dated Thu, 6 Jul 2023 10:56:38 +0200
with message-id
<kwyta6ch5w7hkwj5yj4jnovdy4duugrgkx4okbeqrecfiaxxih@nruwnvc3ktkn>
and subject line #1037818: pdns: ftbfs with GCC-13 - fixed in 4.8.0
has caused the Debian Bug report #1037818,
regarding pdns: ftbfs with GCC-13
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1037818: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1037818
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:pdns
Version: 4.7.3-2
Severity: normal
Tags: sid trixie
User: [email protected]
Usertags: ftbfs-gcc-13
[This bug is targeted to the upcoming trixie release]
Please keep this issue open in the bug tracker for the package it
was filed for. If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.
The package fails to build in a test rebuild on at least amd64 with
gcc-13/g++-13, but succeeds to build with gcc-12/g++-12. The
severity of this report will be raised before the trixie release.
The full build log can be found at:
http://qa-logs.debian.net/2023/05/22/logs/pdns_4.7.3-2_unstable_gccexp.log
The last lines of the build log are at the end of this report.
To build with GCC 13, either set CC=gcc-13 CXX=g++-13 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.
apt-get -t=experimental install g++
Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-13/porting_to.html
[...]
pkcs11signers.cc: In member function ‘unsigned int
Pkcs11Token::ecparam2bits(const std::string&) const’:
pkcs11signers.cc:309:38: warning: ‘EC_KEY* d2i_ECParameters(EC_KEY**, const
unsigned char**, long int)’ is deprecated: Since OpenSSL 3.0
[-Wdeprecated-declarations]
309 | auto tempKey = d2i_ECParameters(nullptr, &in, obj.size());
| ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from pkcs11signers.cc:18:
/usr/include/openssl/ec.h:1211:31: note: declared here
1211 | OSSL_DEPRECATEDIN_3_0 EC_KEY *d2i_ECParameters(EC_KEY **key,
| ^~~~~~~~~~~~~~~~
pkcs11signers.cc:311:82: warning: ‘void EC_KEY_free(EC_KEY*)’ is deprecated:
Since OpenSSL 3.0 [-Wdeprecated-declarations]
311 | auto key = std::unique_ptr<EC_KEY, void(*)(EC_KEY*)>(tempKey,
EC_KEY_free);
|
^
/usr/include/openssl/ec.h:1003:28: note: declared here
1003 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key);
| ^~~~~~~~~~~
pkcs11signers.cc:313:49: warning: ‘const EC_GROUP* EC_KEY_get0_group(const
EC_KEY*)’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
313 | if (EC_GROUP_get_order(EC_KEY_get0_group(key.get()),
order.get(), nullptr) == 1) {
| ~~~~~~~~~~~~~~~~~^~~~~~~~~~~
/usr/include/openssl/ec.h:1034:39: note: declared here
1034 | OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY
*key);
| ^~~~~~~~~~~~~~~~~
g++ -std=c++17 -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -pthread -I../ext/json11
-I../ext/yahttp -I../ext/protozero/include
-DBOOST_CONTAINER_USE_STD_EXCEPTIONS -I/usr/include/p11-kit-1
-I/usr/include/luajit-2.1 -Wdate-time -D_FORTIFY_SOURCE=2
-DSYSCONFDIR=\"/etc/powerdns\" -DPKGLIBDIR=\"/usr/lib/x86_64-linux-gnu/pdns\"
-DLOCALSTATEDIR=\"/var/run\" -fPIE -DPIE -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
--param ssp-buffer-size=4 -fstack-protector -g -O2 -Wall -Wextra -Wshadow
-Wno-unused-parameter -Wmissing-declarations -Wredundant-decls -g -O2
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat
-Werror=format-security -DPACKAGEVERSION='"4.7.3-2.Debian"' -c -o dnsgram.o
dnsgram.cc
g++ -std=c++17 -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -pthread -I../ext/json11
-I../ext/yahttp -I../ext/protozero/include
-DBOOST_CONTAINER_USE_STD_EXCEPTIONS -I/usr/include/p11-kit-1
-I/usr/include/luajit-2.1 -Wdate-time -D_FORTIFY_SOURCE=2
-DSYSCONFDIR=\"/etc/powerdns\" -DPKGLIBDIR=\"/usr/lib/x86_64-linux-gnu/pdns\"
-DLOCALSTATEDIR=\"/var/run\" -fPIE -DPIE -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
--param ssp-buffer-size=4 -fstack-protector -g -O2 -Wall -Wextra -Wshadow
-Wno-unused-parameter -Wmissing-declarations -Wredundant-decls -g -O2
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat
-Werror=format-security -DPACKAGEVERSION='"4.7.3-2.Debian"' -c -o dnspcap.o
dnspcap.cc
In file included from statbag.hh:27,
from dnsgram.cc:26:
lock.hh: In member function ‘T& LockGuardedTryHolder<T>::operator*() const’:
lock.hh:235:18: error: ‘runtime_error’ is not a member of ‘std’
235 | throw std::runtime_error("Trying to access data protected by a
mutex while the lock has not been acquired");
| ^~~~~~~~~~~~~
lock.hh:25:1: note: ‘std::runtime_error’ is defined in header ‘<stdexcept>’;
did you forget to ‘#include <stdexcept>’?
24 | #include <shared_mutex>
+++ |+#include <stdexcept>
25 |
lock.hh: In member function ‘T* LockGuardedTryHolder<T>::operator->() const’:
lock.hh:242:18: error: ‘runtime_error’ is not a member of ‘std’
242 | throw std::runtime_error("Trying to access data protected by a
mutex while the lock has not been acquired");
| ^~~~~~~~~~~~~
lock.hh:242:18: note: ‘std::runtime_error’ is defined in header ‘<stdexcept>’;
did you forget to ‘#include <stdexcept>’?
lock.hh: In member function ‘T& SharedLockGuardedTryHolder<T>::operator*()
const’:
lock.hh:332:18: error: ‘runtime_error’ is not a member of ‘std’
332 | throw std::runtime_error("Trying to access data protected by a
mutex while the lock has not been acquired");
| ^~~~~~~~~~~~~
lock.hh:332:18: note: ‘std::runtime_error’ is defined in header ‘<stdexcept>’;
did you forget to ‘#include <stdexcept>’?
lock.hh: In member function ‘T* SharedLockGuardedTryHolder<T>::operator->()
const’:
lock.hh:339:18: error: ‘runtime_error’ is not a member of ‘std’
339 | throw std::runtime_error("Trying to access data protected by a
mutex while the lock has not been acquired");
| ^~~~~~~~~~~~~
lock.hh:339:18: note: ‘std::runtime_error’ is defined in header ‘<stdexcept>’;
did you forget to ‘#include <stdexcept>’?
lock.hh: In member function ‘const T&
SharedLockGuardedNonExclusiveTryHolder<T>::operator*() const’:
lock.hh:388:18: error: ‘runtime_error’ is not a member of ‘std’
388 | throw std::runtime_error("Trying to access data protected by a
mutex while the lock has not been acquired");
| ^~~~~~~~~~~~~
lock.hh:388:18: note: ‘std::runtime_error’ is defined in header ‘<stdexcept>’;
did you forget to ‘#include <stdexcept>’?
lock.hh: In member function ‘const T*
SharedLockGuardedNonExclusiveTryHolder<T>::operator->() const’:
lock.hh:395:18: error: ‘runtime_error’ is not a member of ‘std’
395 | throw std::runtime_error("Trying to access data protected by a
mutex while the lock has not been acquired");
| ^~~~~~~~~~~~~
lock.hh:395:18: note: ‘std::runtime_error’ is defined in header ‘<stdexcept>’;
did you forget to ‘#include <stdexcept>’?
g++ -std=c++17 -DHAVE_CONFIG_H -I. -I.. -I.. -I.. -pthread -I../ext/json11
-I../ext/yahttp -I../ext/protozero/include
-DBOOST_CONTAINER_USE_STD_EXCEPTIONS -I/usr/include/p11-kit-1
-I/usr/include/luajit-2.1 -Wdate-time -D_FORTIFY_SOURCE=2
-DSYSCONFDIR=\"/etc/powerdns\" -DPKGLIBDIR=\"/usr/lib/x86_64-linux-gnu/pdns\"
-DLOCALSTATEDIR=\"/var/run\" -fPIE -DPIE -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
--param ssp-buffer-size=4 -fstack-protector -g -O2 -Wall -Wextra -Wshadow
-Wno-unused-parameter -Wmissing-declarations -Wredundant-decls -g -O2
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat
-Werror=format-security -DPACKAGEVERSION='"4.7.3-2.Debian"' -c -o
dnspcap2calidns.o dnspcap2calidns.cc
make[4]: *** [Makefile:3431: dnsgram.o] Error 1
make[4]: *** Waiting for unfinished jobs....
make[4]: Leaving directory '/<<PKGBUILDDIR>>/pdns'
make[3]: *** [Makefile:2876: all] Error 2
make[3]: Leaving directory '/<<PKGBUILDDIR>>/pdns'
make[2]: *** [Makefile:601: all-recursive] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>'
make[1]: *** [Makefile:533: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:20: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: pdns
Source-Version: 4.8.0-1
--- End Message ---