Dear Maintainer,
I have confirmed that attached patch can avoid the build error. I guess this is a just upstream's typo and hope this would help you . Sincerely, -- Katsuki Kobayashi
diff -u doscan-0.3.3/debian/changelog doscan-0.3.3/debian/changelog --- doscan-0.3.3/debian/changelog +++ doscan-0.3.3/debian/changelog @@ -1,3 +1,10 @@ +doscan (0.3.3-1.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fixed this and that (closes: #811845) + + -- Katsuki Kobayashi <r...@tirasweel.org> Sun, 12 Feb 2017 01:48:13 +0900 + doscan (0.3.3-1) unstable; urgency=low * New upstream version diff -u doscan-0.3.3/debian/control doscan-0.3.3/debian/control --- doscan-0.3.3/debian/control +++ doscan-0.3.3/debian/control @@ -5,7 +5,8 @@ Build-Depends: debhelper (>= 7.0.50), libpcre3-dev, dh-autoreconf, - autotools-dev + autotools-dev, + quilt Standards-Version: 3.6.1 Package: doscan diff -u doscan-0.3.3/debian/rules doscan-0.3.3/debian/rules --- doscan-0.3.3/debian/rules +++ doscan-0.3.3/debian/rules @@ -2,3 +2,3 @@ %: - dh $@ --with autoreconf,autotools_dev + dh $@ --with autoreconf,autotools_dev,quilt only in patch2: unchanged: --- doscan-0.3.3.orig/debian/patches/fix-gcc6-FTBFS.patch +++ doscan-0.3.3/debian/patches/fix-gcc6-FTBFS.patch @@ -0,0 +1,17 @@ +Description: fix FTBFS bug with GCC6 (Debian Bug #811845) +Author: Katsuki Kobayashi <r...@tirasweel.org> +Origin: other +Last-Update: 2017-02-12 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/src/event_queue.cc ++++ b/src/event_queue.cc +@@ -158,7 +158,7 @@ + event_queue::dump() + { + if (timeouts.empty()) { +- std::cerr << "No handlers installed." << std::cerr; ++ std::cerr << "No handlers installed." << std::endl; + } else { + std::cerr << "Timeout handlers:" << std::endl; + for (timeouts_t::iterator p = timeouts.begin(); p != timeouts.end(); ++p) { only in patch2: unchanged: --- doscan-0.3.3.orig/debian/patches/series +++ doscan-0.3.3/debian/patches/series @@ -0,0 +1 @@ +fix-gcc6-FTBFS.patch