Your message dated Tue, 3 Jan 2017 11:55:42 +0100
with message-id <[email protected]>
and subject line Re: Bug#834234: pdns-recursor: reduce the boost build
dependencies
has caused the Debian Bug report #834234,
regarding pdns-recursor: reduce the boost build dependencies
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.)
--
834234: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834234
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: pdns-recursor
Version: 4.0.1-1
Severity: wishlist
Tags: patch
Hi,
currently pdns-recursor build depends on libboost-all-dev, so installing
all the boost libraries; OTOH, pdns-recursor uses only few of them,
so it is possible to reduce the number of installed packages when
building.
The attacked patch replaced libboost-all-dev with the actual boost
modules used, i.e. the base headers, boost-context, boost-system, and
boost-thread.
(PS: please note boost-context is not used, due to the wrong headers
for it searched.)
Thanks,
--
Pino
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,10 @@ Build-Depends: autoconf,
dh-autoreconf,
dh-systemd,
dpkg-dev (>= 1.17.0~),
- libboost-all-dev,
+ libboost-dev,
+ libboost-context-dev,
+ libboost-system-dev,
+ libboost-thread-dev,
liblua5.2-dev,
libprotobuf-dev,
libssl-dev,
--- End Message ---
--- Begin Message ---
* Pino Toscano <[email protected]> [170103 10:53]:
> The attacked patch replaced libboost-all-dev with the actual boost
> modules used, i.e. the base headers, boost-context, boost-system, and
> boost-thread.
The attached patch neglects to add architecture exceptions for at
least some of those libs.
I fail to see the point of dealing with such issues in this
package; it would mean keeping track of changes to the libboost
packaging, where I really do not need the extra time sink.
--
christian hofstaedtler <[email protected]>
--- End Message ---